PDA

View Full Version : Search for email addresses that are used for more than one account


DF031
12-13-2013, 08:45 AM
Good morning all,

Is there a way to search for email addresses that are used for more than one account ?

Either a built-in option, a mod, or using phpmyadmin

Thanks in advance for your help

ozzy47
12-13-2013, 10:32 PM
You could run this query in the ACP to see if there are any.

SELECT email, COUNT(email) AS Duplicates FROM user GROUP BY email HAVING ( COUNT(email) > 1 )

Then let me know the output of that.

DF031
12-14-2013, 04:33 PM
Thanks !

Works like a charm.

ozzy47
12-14-2013, 05:26 PM
Glad that worked for you. :)