茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    sql刪除重復數(shù)據(jù)只保留一條
    來源:易賢網(wǎng) 閱讀:1563 次 日期:2014-12-10 09:48:39
    溫馨提示:易賢網(wǎng)小編為您整理了“sql刪除重復數(shù)據(jù)只保留一條”,方便廣大網(wǎng)友查閱!

    用sql語句,刪除掉重復項只保留一條

    在幾千條記錄里,存在著些相同的記錄,如何能用sql語句,刪除掉重復的呢

    1、查找表中多余的重復記錄,重復記錄是根據(jù)單個字段(peopleid)來判斷

    select * from people

    where peopleid in (select peopleid from people group by peopleid having count(peopleid) > 1)

    2、刪除表中多余的重復記錄,重復記錄是根據(jù)單個字段(peopleid)來判斷,只留有rowid最小的記錄

    delete from people

    where peoplename in (select peoplename from people group by peoplename having count(peoplename) > 1)

    and peopleid not in (select min(peopleid) from people group by peoplename having count(peoplename)>1)

    3、查找表中多余的重復記錄(多個字段)

    select * from vitae a

    where (a.peopleid,a.seq) in (select peopleid,seq from vitae group by peopleid,seq having count(*) > 1)

    4、刪除表中多余的重復記錄(多個字段),只留有rowid最小的記錄

    delete from vitae a

    where (a.peopleid,a.seq) in (select peopleid,seq from vitae group by peopleid,seq having count(*) > 1)

    and rowid not in (select min(rowid) from vitae group by peopleid,seq having count(*)>1)

    5、查找表中多余的重復記錄(多個字段),不包含rowid最小的記錄

    select * from vitae a

    where (a.peopleid,a.seq) in (select peopleid,seq from vitae group by peopleid,seq having count(*) > 1)

    and rowid not in (select min(rowid) from vitae group by peopleid,seq having count(*)>1)

    6.消除一個字段的左邊的第一位:

    update tablename set [title]=right([title],(len([title])-1)) where title like '村%'

    7.消除一個字段的右邊的第一位:

    update tablename set [title]=left([title],(len([title])-1)) where title like '%村'

    8.假刪除表中多余的重復記錄(多個字段),不包含rowid最小的記錄

    update vitae set ispass=-1

    where peopleid in (select peopleid from vitae group by peopleid

    alter table mytable drop index mdl_tag_use_ix;//mdl_tag_use_ix是上表查出的索引名,key_name

    更多信息請查看IT技術專欄

    更多信息請查看數(shù)據(jù)庫
    易賢網(wǎng)手機網(wǎng)站地址:sql刪除重復數(shù)據(jù)只保留一條

    2026國考·省考課程試聽報名

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網(wǎng)