Lets say I have a table called user_table:
user_table
id
first_name
last_name
gender
email
created_at
How would I write a query listing emails used by more than one user?
EDIT:
Can the same results be achieved by use LEFT JOIN instead of GROUP BY?
Alternatively, you can use an INNER JOIN: