日期:2014-05-19  浏览次数:20430 次

如何去除表中指定字段相同的记录中?
我有一个视图,里面有个字段ID可能会重复出现,我怎样才能只取一条记录出来?我用
Distinct试了,好像不行.视图中也没有唯一的字段,请大家帮忙!

------解决方案--------------------
select ID,min(字段2),min(字段3)...
group by ID...

不知道你是不是要这样的
------解决方案--------------------
加个自增长ID,作为唯一ID再按有重复字段的ID分组去自增长ID最大或者最小的
------解决方案--------------------
select 相同的字段,min(不同的字段)。。
group by 相同的字段


select top 1 * from 表 where 列名= '## '
------解决方案--------------------
******************
删除重复数据(总结)
******************

一、具有主键的情况

I.具有唯一性的字段id(为唯一主键)

delete 用户表
where id not in
(
select max(id) from 用户表 group by col1,col2,col3...
)
group by 子句后跟的字段就是你用来判断重复的条件,如只有col1,
那么只要col1字段内容相同即表示记录相同。

II.具有联合主键

假设col1+ ', '+col2+ ', '...col5 为联合主键

(找出相同记录)
select * from 用户表 where col1+ ', '+col2+ ', '...col5 in
(
select max(col1+ ', '+col2+ ', '...col5) from 用户表
group by col1,col2,col3,col4
having count(*)> 1
)
group by 子句后跟的字段就是你用来判断重复的条件,
如只有col1,那么只要col1字段内容相同即表示记录相同。

或者:
(找出相同记录)
select * from 用户表 where exists (select 1 from 用户表 x where 用户表.col1 = x.col1 and
用户表.col2= x.col2 group by x.col1,x.col2 having count(*) > 1)

III:判断所有的字段

select * into #aa from 用户表 group by id1,id2,....
delete 用户表
insert into 用户表 select * from #aa

二、没有主键的情况

I.用临时表实现

select identity(int,1,1) as id,* into #temp from 用户表
delete #temp
where id not in
(
select max(id) from # group by col1,col2,col3...
)
delete 用户表 ta
inset into ta(...) select ..... from #temp

II.用改变表结构(加一个唯一字段)来实现

alter 用户表 add newfield int identity(1,1)
delete 用户表
where newfield not in
(
select min(newfield) from 用户表 group by 除newfield外的所有字段
)
alter 用户表 drop column newfield