I have a table that looks like this
Table1
Id, Name
How can I write a query that delete all rows with duplicate names but keep the one with the lower Id?
|
I have a table that looks like this
How can I write a query that delete all rows with duplicate names but keep the one with the lower Id? |
|||||||
|
|
If you are using SQL Server 2005 or later:
If using SQL Server 2000 and prior
|
|||
|
|
|
The duplicates can be removed with a simple self join query. The below script would do the trick for you.
This logic can be used for cases where duplicates need to be removed. We should avoid "cursor" as much as possible as it blocks the table. |
|||
|
|
|
Simply you can do this with using cursors the query might be like this declare @id int declare @name nvarchar(30) declare cr cursor for select id,name from idnametbl order by id for update open cr fetch next from cr into @id,@name while @@fetch_status=0 begin delete from idnametbl where id> @id and name=@name fetch next from cr into @id,@name end close cr deallocate cr |
|||
|
|