Delete Duplicate Rows from a Table Using the Cursor

Delete Duplicate Rows from a Table Using the Cursor

This is an advanced solution to delete duplicate Rows from a table using the cursor:

 create table DupTable (    Field1 varchar(20))goinsert DupTable (Field1)    select 'A11111111' UNION ALL    select 'B22222222' UNION ALL    select 'C33333333' UNION ALL    select 'C33333333' UNION ALL    select 'C33333333' UNION ALL    select 'A11111111' UNION ALL    select 'B22222222' UNION ALL    select 'A11111111'declare @sql varchar(255),        @name varchar(32),        @count intdeclare MyCursor insensitive cursor forselect Field1, (count(1)-1) ExcssCount from DupTable group by Field1 having count(1) > 1open MyCursorfetch next from MyCursor into @name,@countwhile @@fetch_status = 0begin    select @sql =    'set rowcount ' + convert(varchar(9), @count) + '    delete DupTable where field1 = "' + @name + '"'    exec (@sql)    print @sql    fetch next from MyCursor into @name, @countend-- while fetchclose MyCursordeallocate MyCursorset rowcount 0select * from DupTabledrop table DupTable
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several