SyntaxFix
Write A Post
Hire A Developer
Questions
Here is query to find email's which are used for more then one login_id:
email
login_id
SELECT email FROM table GROUP BY email HAVING count(*) > 1
You'll need second (of nested) query to get list of login_id by email.