主頁 > 知識庫 > sql2000數(shù)據(jù)庫清除重復(fù)數(shù)據(jù)的二種方法

sql2000數(shù)據(jù)庫清除重復(fù)數(shù)據(jù)的二種方法

熱門標(biāo)簽:外呼系統(tǒng)的話術(shù) 智能外呼系統(tǒng)需要多少錢 貴州外呼回?fù)芟到y(tǒng)是什么 安陽天音防封電銷卡 競圣地圖標(biāo)注服務(wù) 云南全自動外呼系統(tǒng)公司 陽光創(chuàng)信ai外呼獲客系統(tǒng)助力 智能語音車載電話機器人 衛(wèi)星地圖標(biāo)注距離

使用游標(biāo)實現(xiàn)

復(fù)制代碼 代碼如下:

declare @id1 int,@oldid int,@e_REcordid int ,@Olde_REcordid int
DECLARE price CURSOR
FOR SELECT id ,E_recordId FROM evaeve order by  E_recordId desc
OPEN price
FETCH NEXT FROM price  into @oldid,@Olde_REcordid
while @@fetch_status  = 0
begin
FETCH NEXT FROM price  
into @id1,@e_REcordid

if @Olde_REcordid=@e_REcordid
BEGIN
  delete from evaeve where id=@id1
end
set @oldid=@id1
set @Olde_REcordid=@e_REcordid
end 
close price
DEALLOCATE price

使用sql語句實現(xiàn)

復(fù)制代碼 代碼如下:

delete   from evaeve where id not in(  select max(id)  from evaeve group by   E_RecordID)

您可能感興趣的文章:
  • 刪除mysql數(shù)據(jù)庫中的重復(fù)數(shù)據(jù)記錄
  • 教你幾種在SQLServer中刪除重復(fù)數(shù)據(jù)方法
  • sqlserver中重復(fù)數(shù)據(jù)值只取一條的sql語句
  • SQL語句刪除2條重復(fù)數(shù)據(jù)一條保留一條
  • sql刪除重復(fù)數(shù)據(jù)的詳細(xì)方法
  • SQL Server中刪除重復(fù)數(shù)據(jù)的幾個方法
  • 分享MYSQL插入數(shù)據(jù)時忽略重復(fù)數(shù)據(jù)的方法
  • MYSQL刪除重復(fù)數(shù)據(jù)的簡單方法
  • MySQL 刪除數(shù)據(jù)庫中重復(fù)數(shù)據(jù)方法小結(jié)
  • sqlserver清除完全重復(fù)的數(shù)據(jù)只保留重復(fù)數(shù)據(jù)中的第一條
  • Sql Server使用cursor處理重復(fù)數(shù)據(jù)過程詳解
  • 刪除MySQL重復(fù)數(shù)據(jù)的方法
  • MySQL中刪除重復(fù)數(shù)據(jù)的簡單方法
  • SQL Server數(shù)據(jù)庫刪除數(shù)據(jù)集中重復(fù)數(shù)據(jù)實例講解

標(biāo)簽:河源 周口 預(yù)約服務(wù) 鄂爾多斯 營口 寧夏 欽州 湘潭

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《sql2000數(shù)據(jù)庫清除重復(fù)數(shù)據(jù)的二種方法》,本文關(guān)鍵詞  sql2000,數(shù)據(jù)庫,清除,重復(fù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《sql2000數(shù)據(jù)庫清除重復(fù)數(shù)據(jù)的二種方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于sql2000數(shù)據(jù)庫清除重復(fù)數(shù)據(jù)的二種方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章