I have a table and I need the correct statement to delete duplicate records. I want to achieve this by deleting rows in the table where multiple column values equal those of other records in the same table. I can do simple delete from [table] where [col] = [val]
but I have no idea how to do this. Can you provide a template that I can work from?
Thanks.