首页 > 数据库 > MySQL > 正文

删除mysql数据库中的重复数据记录

2020-01-19 00:23:58
字体:
来源:转载
供稿:网友
采用的是下面的方法可删除,假设重复的是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;
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表