『壹』 删除数据库中重复的数据,只保留一条这个sql 怎么写

有2个办法
1.找出一份不重复的表,导入到临时表,把原先的表数据删除内,在把临时表的容数据导回去,这个适合没有ID字段的表,语句:
找出唯一数据,把重复去掉并存入中转表:select distinct * into table(中转表名称) from tb(原表)
删除原表数据:delete tb
把中转表数据导入原表:insert into tb select * from table
2.有ID字段的,把相同数据的最大ID当成唯一的
搜索相同数据的最大ID:select max(id) from tb group by 字段1,字段2,...(除ID以外的所有字段)
把重复数据删除 delete from tb where id not in(select max(id) from tb group by 字段1,字段2,...(除ID以外的所有字段))

『贰』 sql中如何删除一个表中重复的记录

sql中删除一个表中的来重复源记录可以采用如下步骤:

1、把a_dist表的记录用distinct去重,结果放到临时表中。

select distinct * into #temp from a_dist;

2、把a_dist表的记录全部删除。

delete from a_dist;

3、把临时表中的数据信息导进到a_dist表中,并删除临时表。

insert into a_distselect * from #temp;

drop table #temp;

(2)删除重复数据sql扩展阅读:

SQL (结构化查询语言)是用于执行查询的语法。在数据库上执行的大部分工作都由 SQL 语句完成。SQL 语言包含用于更新、插入和删除记录的语法。

增删改查指令构成了 SQL 的 DML 部分:

  • SELECT- 从数据库表中获取数据

  • UPDATE- 更新数据库表中的数据

  • DELETE- 从数据库表中删除数据

  • INSERT INTO- 向数据库表中插入数据

『叁』 sql查询去掉重复记录

1、打开要去掉重复数据的数据库,这里新建一张含有重复数据的user表做示例,如下图所示:

『肆』 SQL查询,如何去除重复的记录

sql查询去除重复值语句
sql
单表/多表查询去除重复记录
单表distinct
多表group
by
group
by
必须放在
order
by

limit之前,不然会报错
************************************************************************************
1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断
select
*
from
people
where
peopleId
in
(select
peopleId
from
people
group
by
peopleId
having
count(peopleId)
>
1)
2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录
delete
from
people
where
peopleId
in
(select
peopleId
from
people
group
by
peopleId
having
count(peopleId)
>
1)
and
rowid
not
in
(select
min(rowid)
from
people
group
by
peopleId
having
count(peopleId
)>1)
3、查找表中多余的重复记录(多个字段)
select
*
from
vitae
a
where
(a.peopleId,a.seq)
in
(select
peopleId,seq
from
vitae
group
by
peopleId,seq
having
count(*)
>
1)
4、删除表中多余的重复记录(多个字段),只留有rowid最小的记录
delete
from
vitae
a
where
(a.peopleId,a.seq)
in
(select
peopleId,seq
from
vitae
group
by
peopleId,seq
having
count(*)
>
1)
and
rowid
not
in
(select
min(rowid)
from
vitae
group
by
peopleId,seq
having
count(*)>1)
5、查找表中多余的重复记录(多个字段),不包含rowid最小的记录
select
*
from
vitae
a
where
(a.peopleId,a.seq)
in
(select
peopleId,seq
from
vitae
group
by
peopleId,seq
having
count(*)
>
1)
and
rowid
not
in
(select
min(rowid)
from
vitae
group
by
peopleId,seq
having
count(*)>

『伍』 SQL查询,如何去除重复的记录

首先,先说明一个问题。这样的结果出现,说明系统设计是有问题的。

其次
删除重复数据,你要提供你是什么数据库。
不同数据库会有不同的解决方案。

关键字Distinct 去除重复,如下列SQL,去除Test相同的记录;
1. select distinct Test from Table
2. 如果是要删除表中存在的重复记录,那就逻辑处理,如下:
3. select Test from Table group by Test having count(test)>1
4. 先查询存在重复的数据,后面根据条件删除

还有一个更简单的方法可以尝试一下:
select aid, count(distinct uid) from 表名 group by aid
这是sqlserver 的写法。

  • 如图一在数据表中有两个膀胱冲洗重复的记录。

『陆』 SQL删除重复数据,保留最近修改的一条记录。

//取到最近一条记录
select type,xtype from 表名 where type='P' and xtype='3' order by execTime desc limit 1;
//拿到type和xtype两个值 type1 和 xtype1

delete from 表名 where type='P' and xtype='3' and type<>type1 and xtype<>xtype1;
这样就可以了。

如果你的表内里面有id属性可以用一条sql语句容解决:
delete from 表名 where type='P' and xtype='3' and id not in(select id from 表名 where type='P' and xtype='3' order by execTime desc limit 1)