come let us share our knowledge
This query will get the duplicate records from the database table
SELECT YourColumn, COUNT(YourColumn) TotalCountFROM YourTableGROUP BY YourColumnHAVING COUNT(YourColumn) > 1
SELECT YourColumn, COUNT(
YourColumn
) TotalCountFROM YourTableGROUP BY YourColumnHAVING COUNT(
) > 1