mysql删除重复的数据库
发布时间: 2024-08-22 08:42:58
delete from article_chapter where aid not in(select max(aid) from article_chapter group by articleid , chaptername)
❷ 在Mysql下如何删除重复的数据~
首先先创建一个临时表,然后将author表中无重复的数据拎出来,放进临时表中。
create temporary table 表名
select distinct id,name,password
from author
然后将author表中的记录全部删除。
delete from author
最后将临时表中的记录插入author表中
insert into author (id,name,password)
select id,name,password
from 临时表
❸ Mysql数据库中多条重复数据,如何只删除一条
这个需要分情况。
1,你的数据库表中有主键,且主键上面的数据为唯一值。也就是没有重复值。
那么你在删除的时候,将这个唯一值作为条件进行删除。
如:
delete
from
[表名]
where
id=1
2.所有的数据相同,那么你只能打开数据表,手工选定其中某一条,进行删除。
热点内容