MySQL 刪除資料庫中反覆資料(以部分資料為準)

來源:互聯網
上載者:User

標籤:dpx   article   family   sub   row   pos   rom   class   mysql   

delete from zqzrdp 

where tel  in (select min(dpxx_id) from  zqzrdp  group by tel  having count(tel)>1);

運行,報錯


異常意為:你不能指定目標表的更新在FROM子句。傻了。MySQL 這樣寫,不行,讓人鬱悶。

難倒僅僅能分步操作,蛋疼

下面是網友寫的。相同是坑爹的代碼,我機器上執行不了。

1. 查詢須要刪除的記錄,會保留一條記錄。

 代碼例如以下 複製代碼

select a.id,a.subject,a.RECEIVER from test1 a left join (select c.subject,c.RECEIVER ,max(c.id) as  bid from test1 c where status=0 GROUP BY RECEIVER,SUBJECT having count(1) >1) b on a.id< b.bid where  a.subject=b.subject and a.RECEIVER = b.RECEIVER and a.id < b.bid

2. 刪除反覆記錄,僅僅保留一條記錄。注意。subject,RECEIVER 要索引。否則會非常慢的。

 代碼例如以下 複製代碼

delete a from test1 a, (select c.subject,c.RECEIVER ,max(c.id) as  bid from test1 c where status=0 GROUP BY RECEIVER,SUBJECT having count(1) >1) b where a.subject=b.subject and a.RECEIVER = b.RECEIVER and a.id < b.bid;


3. 尋找表中多餘的反覆記錄。反覆記錄是依據單個欄位(peopleId)來推斷

 代碼例如以下 複製代碼

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


4. 刪除表中多餘的反覆記錄,反覆記錄是依據單個欄位(peopleId)來推斷。僅僅留有rowid最小的記錄

 代碼例如以下 複製代碼

delete from people 
where peopleId  in (select  peopleId  from people  group  by  peopleId   having  count(peopleId) > 1)
and rowid not in (select min(rowid) from  people  group by peopleId  having count(peopleId )>1)

5.刪除表中多餘的反覆記錄(多個欄位)。僅僅留有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)

MySQL 刪除資料庫中反覆資料(以部分資料為準)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.