Hi, I have this:
[sql]
SELECT email,username,
COUNT(email) AS NumOccurrences
FROM user
GROUP BY email
HAVING ( COUNT(email) > 1 )
[/sql]
And it works just fine, but I was wondering how to make it so that it actually LISTS each occurence?
For example, it gives me this
but I would like it to give me this:
This of course becomes redundant, and the "numOccurrences" column would be kind of unnecessary, but I'm really stupid with MySQL and can't seem to figure this out.
Thanks!