删除mysql数据库中的重复数据记录
程序员文章站
2023-10-20 08:37:02
采用的是下面的方法可删除,假设重复的是test数据库中的title字段 复制代码 代码如下:create table bak as&...
采用的是下面的方法可删除,假设重复的是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;
复制代码 代码如下:
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;
上一篇: 刘裕为什么是一个特殊的存在 他的功绩能和祖先刘邦相媲美吗
下一篇: QQ五笔使用技巧