In a [member] table, some rows have the same value for the email
columns.
login_id | email
john [email protected]
peter [email protected]
johnny [email protected]
...
Some people used different login_id but the same email address, no unique constraint was set on this column. Now I need to find these rows and see if they should be removed.
What sql statement should I use to find these rows? (MySQL 5)