当前位置:数据库 > MySQL >>

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

答案:采用的是下面的方法可删除,假设重复的是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;

上一个:MySQL的Query Cache原理分析
下一个:MySQL取出随机数据

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,