Wednesday, October 7, 2009

How to select Duplicate Rows from a table

Below is the query to select duplicate rows from a table.
select email,count(*) from database_Amit group by email having count(*)>1

No comments:

Post a Comment