I have a table with a varchar column, and I would like to find all the records that have duplicate values in this column. What is the best query I can use to find the duplic
Select column_name, column_name1,column_name2, count(1) as temp from table_name group by column_name having temp > 1