删除mysql数据库中的重复数据记录
作者: 火车头 日期: 2008-05-28 21:41
mysql中select distinct * from text不能显示不重复的记录,而是直接全部显示
采用的是下面的方法可删除,假设重复的是test数据库中的title字段
create table bak as (select * from test group by title having count(*)=1);
采用的是下面的方法可删除,假设重复的是test数据库中的title字段
create table bak as (select * from test group by title having count(*)=1);
insert into bak (select * from test group by title having count(*)>1);
truncate table test;
insert into test select * from bak;
评论: 1 |
引用: 0 |
阅读: 1485
| One of the best resources for ugg boots clearance sale is the division store large Nordstrom. Due to the fact Nordstrom originally commenced as a shoe store, it is absolutely ideal that Nordstrom carries 1 of the largest selections of ugg footwear in the region. |
发表评论
订阅
上一篇
返回
下一篇