select col1,col2,count(*);
from table;
group by col1,col2 having count(*) > 1
col1 and col2 represet the fields that you want to see if there are duplicates, this well could be one field.
the return result will should the duplicates. Attitude is Everything