I asked this question a while back to delete duplicate records based on a column. The answer worked great:
delete from tbl
where id NOT in
(
select min(id)
from tbl
group by sourceid
)
I now have a simillar situation but the definition of duplicate record is based on multiple columns. How can I alter this above SQL to identify duplicate records where a unique record is define as concatenated from Col1 + Col2 + Col3. Would i just do something like this ?
delete from tbl
where id NOT in
(
select min(id)
from tbl
group by col1, col2, col3
)

not indoes not behave as you might expect when nulls are involved). I realized that's not likely to be a factor here, but it is important to learn about CTEs and NOT EXISTS for cases where it might... – Aaron Bertrand Jul 23 '12 at 15:20