1、必须保证表中有主键或者唯一索引,或者某列数据不能重复。只有这样,才可能使用一句SQL来实现。否则只能考虑其它办法。下面的语句,假定BB列是不重复的,删除后保存BB列值最大的那条记录。
delete
from
表
where
aa
in
(select
aa
from
表
group
by
aa
having
count(aa)
>
1)
and
bb
not
in
(select
max(bb)
from
表
group
by
aa
having
count(aa)
>
1);
2、有多种写法:
delete
A
from
B
where
AAA
=
BAA
delete
A
from
A,B
where
AAA
=
BAA
delete
A
where
AA
in
(select
AA
from
B)
3、使用into关键字:
select
into
新表名
from
原表
4、取数据前3位,字段必须是类似char类型,使用类似substring这样的函数(SYBASE是substring,ORACLE是substr):
select
substring(字段,1,3)
from
表名
先将不重复的数据插入临时表,再将原表的数据清除,将临时表的内容插回去
select distinct
into #a
from table1
delete from table1
insert into table1
select from #a
1查询出重复记录
select 重复记录字段 form 数据表 group by houseno having count(重复记录字段)>1
2重复记录只显示一条ID值最小或最大的记录
select id, from 数据表 where houseno (select 重复记录字段 form 数据表 group by 重复记录
字段 having count(重复记录字段)>1 )
这样把houseno重复的的ID值全部显示出,那么我们如何只显示一条id最小或最大的记录呢?
关键是在上面sql的where子句中select 重复记录字段 form 数据表 group by 重复记录字段 having count(
重复记录字段)>1
修改为
select min(id) form 数据表 group by 重复记录字段 having count(重复记录字段)>1
这样就查询重复记录字段中ID最小值
那么上面的语句就是
select id, from 数据表 where houseno (select min(id) form 数据表 group by 重复记录字段
having count(重复记录字段)>1 )
3至于对重复记录执行delete update 就非常简单啦
例如只保留最小id的一条
delete 数据表 where id in (select max(id ) from 数据包 group by 重复记录字段 having count(重复记录字段)>1)
update *** 作不说啦都一样。
4group by 字段 having count与distinct的区别
distct查询显示全部字段值都是一样的唯一,一条记录
例如
id name sex
43 111 1
44 111 1
45 111 2
46 222 2
47 222 2
48 333 1
49 333 1
SELECT distinct
[name]
,[sex]
FROM [database][dbo][a]
要想实现上面的要去掉 sex字段 改成
SELECT distinct
[name]
FROM [database][dbo][a]
但要想取得重复ID最小值不建议用distinct。
总结:
对于重复记录关键是查出 :采用group by 字段 having count(字段)>1
取得最小id的一条(很关键) :采用min(id)
1先将umane用一个临时表存起来
select distinct(uname) uname into #a form users
2删除users表内的数据
delete from users
3把临时表用户加到users表中,并将默认upwd全设为1234要看你upwd是什么数据类型 如果是数字的就
insert users select uname,1234 from #a
是字符型的
insert users select uname,'1234' from #a
4最后删除临时表
drop table #a
这样所有人的初始密码都变为1234
以上就是关于怎么样删除SQL SERVER 数据库中重复的数据全部的内容,包括:怎么样删除SQL SERVER 数据库中重复的数据、如何数据库去重复的记录SQL、怎样去除sql server数据库中查询到的重复的记录等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)