--To find duplicate rows in table select colname, count(colname) from TableName Group by colname Having (count(colname) > 1)
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)