[摘要]这篇文章主要介绍了MySQL 消除重复行的一些方法,需要的朋友可以参考下sql语句/*MySQL 消除重复行的一些方法---Chu Minfei---2010-08-12 22:49:44.660-...
这篇文章主要介绍了MySQL 消除重复行的一些方法,需要的朋友可以参考下
sql语句
/*
MySQL 消除重复行的一些方法
---Chu Minfei
---2010-08-12 22:49:44.660
--引用转载请注明出处:http://blog.csdn.NET/feixianxxx
*/
----------------全部字段重复------------------------
--1使用表替换来删除重复项
create table test_1(id int,value int);
insert test_1 select 1,2 union all select 1,2 union all select 2,3;
--建立一个和源表结构一样的空的临时表
create table tmp like test_1;
--向临时表插入不重复的记录
insert tmp select distinct * from test_1;
--删除原表
drop table test_1;
--更改临时表名为目标表
rename table tmp to test_1;
--显示
mysql> select * from test_1;
+------+-------+
关键词:MySQL如何消除重复行的办法区分