主頁 > 知識(shí)庫 > MySQL 消除重復(fù)行的一些方法

MySQL 消除重復(fù)行的一些方法

熱門標(biāo)簽:昆明智能外呼系統(tǒng)中心 手機(jī)用地圖標(biāo)注工具 南宋地圖標(biāo)注黃河華山 智能電銷機(jī)器人靠譜么 電銷機(jī)器人公眾號(hào)推送 長安區(qū)違法建房地圖標(biāo)注 地圖標(biāo)注培訓(xùn) 電銷機(jī)器人說明書 安國在哪里辦理400電話

sql語句

/*
MySQL 消除重復(fù)行的一些方法
---Chu Minfei
---2010-08-12 22:49:44.660
--引用轉(zhuǎn)載請注明出處:http://blog.csdn.NET/feixianxxx
*/
----------------全部字段重復(fù)------------------------
 --1使用表替換來刪除重復(fù)項(xiàng)
 create table test_1(id int,value int);
 insert test_1 select 1,2 union all select 1,2 union all select 2,3;
 --建立一個(gè)和源表結(jié)構(gòu)一樣的空的臨時(shí)表
 create table tmp like test_1;
 --向臨時(shí)表插入不重復(fù)的記錄
 insert tmp select distinct * from test_1;
 --刪除原表
 drop table test_1;
 --更改臨時(shí)表名為目標(biāo)表
 rename table tmp to test_1;
 --顯示
 mysql> select * from test_1;
+------+-------+
| id  | value |
+------+-------+
|  1 |   2 |
|  2 |   3 |
+------+-------+
 --2.添加auto_increment屬性列(這個(gè)方法只能用于MyISAM或者BDB引擎的表)
 create table test_1(id int,value int) engine=MyISAM;
 insert test_1 select 1,2 union all select 1,2 union all select 2,3;
 alter table test_1 add id2 int not null auto_increment,
 add primary key(id,value,id2);
 select * from test_1;
+----+-------+-----+
| id | value | id2 |
+----+-------+-----+
| 1 |   2 |  1 |
| 1 |   2 |  2 |
| 2 |   3 |  1 |
+----+-------+-----+
  delete from test_1 where id2>1;
  alter table test_1 drop id2;
  select * from test_1;
  +----+-------+
| id | value |
+----+-------+
| 1 |   2 |
| 2 |   3 |
+----+-------+
-------------------部分字段重復(fù)---------------------
--1.加索引的方式
 create table test_2(id int,value int);
 insert test_2 select 1,2 union all select 1,3 union all select 2,3;
 Alter IGNORE table test_2 add primary key(id);
 select * from test_2;
 +----+-------+
| id | value |
+----+-------+
| 1 |   2 |
| 2 |   3 |
+----+-------+
 我們可以看到 1 3 這條記錄消失了 
 我們這里也可以使用Unique約束 因?yàn)橛锌赡芰兄杏蠳ULL值,但是這里NULL就可以多個(gè)了..
 --2.聯(lián)合表刪除
 create table test_2(id int,value int);
 insert test_2 select 1,2 union all select 1,3 union all select 2,3;
 delete A from test_2 a join (select MAX(value) as v ,ID from test_2 group by id) b
 on a.id=b.id and a.value>b.v;
 select * from test_2;
 +------+-------+
| id  | value |
+------+-------+
|  1 |   3 |
|  2 |   3 |
+------+-------+
--3.使用Increment_auto也可以就是上面全部字段去重的第二個(gè)方法
--4.容易錯(cuò)誤的方法
--有些朋友可能會(huì)想到子查詢的方法,我們來試驗(yàn)一下
 create table test_2(id int,value int);
 insert test_2 select 1,2 union all select 1,3 union all select 2,3;
 delete a from test_2 a where exists(select * from test_2 where a.id=id and a.valuevalue);
 /*ERROR 1093 (HY000): You can't specify target table 'a' for update in FROM clause*/
 
 目前,您不能從一個(gè)表中刪除,同時(shí)又在子查詢中從同一個(gè)表中選擇。
 
 
 ------------------刪除特定重復(fù)行--------------
 --主要通過order by +limit 或者直接limit 
 create table test_3(id int,value int);
 insert test_3 select 1,2 union all select 1,3 union all select 1,4 union all select 2,3;
 --這是要保留ID=1 value最小的那個(gè)記錄,刪除其他id為的記錄
 delete from test_3 where id=1 order by value desc limit 2;
 select * from test_3;
+------+-------+
| id  | value |
+------+-------+
|  1 |   2 |
|  2 |   3 |
+------+-------+
 如果你只想刪除任意的記錄 保留一條 就可以去掉order by 

您可能感興趣的文章:
  • mysql刪除重復(fù)行的實(shí)現(xiàn)方法
  • Mysql數(shù)據(jù)庫支持的存儲(chǔ)引擎對比
  • MySQL帶你秒懂索引下推
  • MySQL 如何查找刪除重復(fù)行

標(biāo)簽:合肥 武漢 長沙 南昌 吉安 東莞 潛江 江門

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