1. If an ID field exists, it is a unique field.
Delect table where id not in (
Select max (ID) from Table group by col1, col2, col3...
)
The field followed by the group by clause is the condition for you to judge repetition. For example, if only col1 is used, if the content of col1 is the same, the record is the same.
2. This can also be used to determine all fields.
Select * into # Aa from Table group by id1, Id2 ,....
Delete table
Insert into table
Select * from # Aa
3. No ID
Select Identity (INT, 1, 1) as ID, * into # temp from tabel
Delect # Where id not in (
Select max (ID) from # group by col1, col2, col3 ...)
Delect table
Inset into table (...)
Select... from # temp
4. col1 + ',' + col2 + ','... col5 join primary key
Select * from table where col1 + ',' + col2 + ','... col5 in (
Select max (col1 + ',' + col2 + ','... col5) from table
Where having count (*)> 1
Group by col1, col2, col3, col4
)
The field followed by the group by clause is the condition for you to judge repetition. For example, if only col1 is used, if the content of col1 is the same, the record is the same.
5
Select Identity (INT, 1, 1) as ID, * into # temp from tabel
Select * from # temp where ID in (
Select max (ID) from # EMP where having count (*)> 1 group by col1, col2, col3 ...)
6.
Select distinct * into # temp from tablename
Delete tablename
Go
Insert tablename select * from # temp
Go
Drop table # temp
Turn: http://topic.csdn.net/t/20031020/16/2375465.html #