I have a database with customer information. In the table, I have:
“fullname”
“emails”
etc.
Some customers have made more than 1 order with me, so there’s a row for every order and obviously also duplicate names for each order.
How can I get the mySQL records for customers that have made more than 5 orders, for example?
So that it would only show mySQL records where the “fullname” of “Michael Dell” for example shows up in >5 rows?
Something like this should do the trick?
Or