November 27, 2011 at 8:49 am
AmitAgrawal (11/25/2011)
Hi,You can try below solution
delete T1
from MyTable T1, MyTable T2
where T1.dupField = T2.dupField
and T1.uniqueField > T2.uniqueField
Finally... a different idea than the rest. However, that uses a Triangular Join. Read the article at the following URL for why that might not be such a good idea, Amit.
http://www.sqlservercentral.com/articles/T-SQL/61539/
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing post 16 (of 15 total)
You must be logged in to reply to this topic. Login to reply