SQL Server clears fully duplicated data only the first of the duplicate data is preserved _mssql

Source: Internet
Author: User
--Creating a test table create 
table [dbo].[ Testtab] ( 
[ID] [nchar] (a) null, 
[name] [nchar] (a) null 
); 
--Inserts test data into the test table insert into 
testtab values (' 1 ', ' 1 '); 
INSERT into Testtab values (' 1 ', ' 1 '); 
INSERT into Testtab values (' 2 ', ' 2 '); 
INSERT into Testtab values (' 2 ', ' 2 '); 
INSERT into Testtab values (' 3 ', ' 3 '); 
INSERT into Testtab values (' 3 ', ' 3 '); 

--Create a temporary table and insert the data in the test table testtab into the temporary table and add the Id:autoid 
Select Identity (int,1,1) as Autoid, * into #Tmp from Testtab 
- Deletes the duplicate data in the temporary table #tmp according to Autoid, leaving only the first delete in each set of duplicate data 
#Tmp where autoid in (select Max (autoid) to #Tmp Group by ID); 
--Clears all data in the Testtab table to 
delete testtab; 
-Inserts the processed data from the #tmp table into the Testtab table into the 
testtab select Id,name from #Tmp; 
--Delete temporary table #tmp 
drop table #Tmp;
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.