成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

SQL刪除重復(fù)數(shù)據(jù)的方法

這篇文章將為大家詳細(xì)講解有關(guān)SQL刪除重復(fù)數(shù)據(jù)的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

我們提供的服務(wù)有:網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、伽師ssl等。為上千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的伽師網(wǎng)站制作公司

在sql中,可以使用select語句刪除重復(fù)數(shù)據(jù),語法為:“select * from 字段 where 字段id in (select 字段id from 字段 group by 字段 having count(字段id) > 1)”。

本教程操作環(huán)境:windows7系統(tǒng)、MySQL8.0版本、Dell G3電腦。

用SQL語句,刪除掉重復(fù)項(xiàng)只保留一條

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

查找表中多余的重復(fù)記錄,重復(fù)記錄是根據(jù)單個(gè)字段(peopleId)來判斷

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

擴(kuò)展:

刪除表中多余的重復(fù)記錄,重復(fù)記錄是根據(jù)單個(gè)字段(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)

查找表中多余的重復(fù)記錄(多個(gè)字段)

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

刪除表中多余的重復(fù)記錄(多個(gè)字段),只留有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)

查找表中多余的重復(fù)記錄(多個(gè)字段),不包含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)

消除一個(gè)字段的左邊的第一位:

update tableName set [Title]=Right([Title],(len([Title])-1)) where Title like '村%'

消除一個(gè)字段的右邊的第一位:

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

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

update vitae set ispass=-1where peopleId in (select peopleId from vitae group by peopleId

關(guān)于“SQL刪除重復(fù)數(shù)據(jù)的方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。

名稱欄目:SQL刪除重復(fù)數(shù)據(jù)的方法
本文路徑:http://jinyejixie.com/article10/ggcggo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版網(wǎng)站內(nèi)鏈、全網(wǎng)營銷推廣、品牌網(wǎng)站設(shè)計(jì)、App設(shè)計(jì)、網(wǎng)站維護(hù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
彰化市| 汶上县| 宁晋县| 西盟| 武胜县| 增城市| 合江县| 靖州| 安塞县| 大洼县| 阿克陶县| 西青区| 汶川县| 沂南县| 宾川县| 临沧市| 湘潭县| 藁城市| 全南县| 凌云县| 凌云县| 江阴市| 甘洛县| 常州市| 石城县| 威远县| 临城县| 德惠市| 上犹县| 宁国市| 奉节县| 东阳市| 阜南县| 锦州市| 吴忠市| 甘孜| 阜新市| 津南区| 平塘县| 郑州市| 奈曼旗|