MySQL 數(shù)據(jù)查重、去重的實(shí)現(xiàn)語(yǔ)句
有一個(gè)表user,字段分別有id、nick_name、password、email、phone。
一、單字段(nick_name)
查出所有有重復(fù)記錄的所有記錄
select * from user where nick_name in (select nick_name from user group by nick_name having count(nick_name)>1);
查出有重復(fù)記錄的各個(gè)記錄組中id最大的記錄
select * from user where id in (select max(id) from user group by nick_name having count(nick_name)>1);
查出多余的記錄,不查出id最小的記錄
select * from user where nick_name in (select nick_name from user group by nick_name having count(nick_name)>1) and id not in (select min(id) from user group by nick_name having count(nick_name)>1);
刪除多余的重復(fù)記錄,只保留id最小的記錄
delete from user where nick_name in (select nick_name from (select nick_name from user group by nick_name having count(nick_name)>1) as tmp1) and id not in (select id from (select min(id) from user group by nick_name having count(nick_name)>1) as tmp2);
二、多字段(nick_name,password)
查出所有有重復(fù)記錄的記錄
select * from user where (nick_name,password) in (select nick_name,password from user group by nick_name,password where having count(nick_name)>1);
查出有重復(fù)記錄的各個(gè)記錄組中id最大的記錄
select * from user where id in (select max(id) from user group by nick_name,password where having count(nick_name)>1);
查出各個(gè)重復(fù)記錄組中多余的記錄數(shù)據(jù),不查出id最小的一條
select * from user where (nick_name,password) in (select nick_name,password from user group by nick_name,password having count(nick_name)>1) and id not in (select min(id) from user group by nick_name,password having count(nick_name)>1);
刪除多余的重復(fù)記錄,只保留id最小的記錄
delete from user where (nick_name,password) in (select nick_name,password from (select nick_name,password from user group by nick_name,password having count(nick_name)>1) as tmp1) and id not in (select id from (select min(id) id from user group by nick_name,password having count(nick_name)>1) as tmp2);
以上就是MySQL 數(shù)據(jù)查重、去重的實(shí)現(xiàn)語(yǔ)句的詳細(xì)內(nèi)容,更多關(guān)于MySQL 數(shù)據(jù)查重、去重的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. 使用mysql記錄從url返回的http GET請(qǐng)求數(shù)據(jù)操作2. SQL Server 2005-如何在SQL Server用戶自訂函數(shù)中調(diào)用GetDate()函數(shù)3. SQL語(yǔ)句中的ON DUPLICATE KEY UPDATE使用4. debian10 mariadb安裝過程詳解5. Oracle建表與創(chuàng)建序列詳細(xì)實(shí)例6. 在SQL Server 2000中恢復(fù)Master數(shù)據(jù)庫(kù)7. Mybatis傳入List實(shí)現(xiàn)批量更新的示例代碼8. SQL Server 2000中生成XML的小技巧9. mariadb的主從復(fù)制、主主復(fù)制、半同步復(fù)制配置詳解10. mysql 模糊查詢 concat()的用法詳解
