標籤:style blog http color 資料 ar div html
本文介紹了Sql Server資料庫中刪除資料表中重複記錄的方法。
[項目]
資料庫中users表,包含u_name,u_pwd兩個欄位,其中u_name存在重複項,現在要實現把重複的項刪除!
[分析]
1、產生一張暫存資料表new_users,表結構與users表一樣;
2、對users表按id做一個迴圈,每從users表中讀出一個條記錄,判斷new_users中是否存在有相同的u_name,如果沒有,則把它插入新表;如果已經有了相同的項,則忽略此條記錄;
3、把users表改為其它的名稱,把new_users表改名為users,實現我們的需要。
[程式]
declare @id int,@u_name varchar(50),@u_pwd varchar(50)set @id=1while @id<1000beginif exists (select u_name from users where u_id=@id) beginselect @u_name=u_name,@u_pwd=u_pwd from users where u_id=@id --擷取來源資料if not exists (select u_name from new_users where u_name=@u_name) -- 判斷是否有重複的U-name項begininsert into new_users(u_name,u_pwd) values(@u_name,@u_pwd)endendset @id=@id+1endselect * from new_users
[方法二]
假設Users表中有相同的name項,id為主鍵識別欄位。現在要求去掉Users中重複的name項。
1、把不重複的ID儲存在一個tmp1表裡面。
select min([id]) as [id] into tmp1 from Users group by [name]
2、從Users表中選取tmp1表中的id項,將相應id的資料寫入表tmp2
select * into tmp2 from Users where [id] in( select [id] from tmp1)
3、把Users、tmp1兩張表Drop掉
drop table Users
drop table tmp1
4、把tmp2表改名為User表
[注]如果沒有主鍵標識id,可以增加一個識別欄位,方法如下:
select identity(int,1,1) as autoID, * into tmp0 from Users
[情況三](指令碼學堂 www.jbxue.com)
假設有一個User表,id為主鍵識別欄位,但有一些完全重複的項。現在要求去掉Users中這些完全重複的項,只保留一條。
1、把不重複的資料儲存在tmp1表中
select distinct * into tmp1 from Users
2、把Users表刪除
drop table Users
3、把tmp1表中的資料匯入到Users表
select * into Users from tmp1
4、把tmp1表刪除
drop table tmp1
參考連結:
- sql server中distinct篩選重複記錄的用法舉例
- sql server 查詢重複記錄的多種方法
- sql server 重複記錄的取最新一筆的實現方法
- 如何在SQL Server2008中重複資料刪除記錄
- sql server重複資料刪除記錄且只餘一條的例子
- 一條sql語句刪除表中重複記錄