Skip to content
+254 704 052992
support@versedwriters.com
Home
How It Works
FAQ
Prices
Revision Policy
ORDER NOW
Home
MySQL
identify all dupicate email adresses with in a user table
identify all dupicate email adresses with in a user table
April 1, 2026
admin
Comments Off
on identify all dupicate email adresses with in a user table
MySQL
uncategorised
the sql query
select Email , count (Email)
from user
group by Email
having count(Email) >1 ;
admin