select * from WhUser where wxcno in (select wxcno from WhUser group by id having count(wxcno)>1

解决方案 »

  1.   

    select * from WhUser where wxcno in (select wxcno from WhUser group by wxcno having count(wxcno)>1
      

  2.   


    删除重复数据一、具有主键的情况
    a.具有唯一性的字段id(为唯一主键)
    delect table 
    where id not in 
    (
    select max(id) from table group by col1,col2,col3...
    )
    group by 子句后跟的字段就是你用来判断重复的条件,如只有col1,
    那么只要col1字段内容相同即表示记录相同。b.具有联合主键
    假设col1+','+col2+','...col5 为联合主键
    select * from  table where col1+','+col2+','...col5 in (
      select max(col1+','+col2+','...col5) from table 
    where having count(*)>1
    group by col1,col2,col3,col4 
    )
    group by 子句后跟的字段就是你用来判断重复的条件,
    如只有col1,那么只要col1字段内容相同即表示记录相同。
    or
    select * from table  where exists (select 1 from table x where table.col1 = x.col1 and 
    table.col2= x.col2 group by x.col1,x.col2 having count(*) >1)c:判断所有的字段
      select * into #aa from table group by id1,id2,....
      delete table 
      insert into table 
      select * from #aa二、没有主键的情况a:用临时表实现
    select identity(int,1,1) as id,* into #temp from ta
    delect #temp 
    where id not in 
    (
      select max(id) from # group by col1,col2,col3...
    )
    delete table ta
    inset into ta(...)
       select ..... from #tempb:用改变表结构(加一个唯一字段)来实现
    alter table 表 add  newfield int identity(1,1)
    delete 表
    where newfield not in
    (
    select min(newfield) from 表 group by 除newfield外的所有字段
    )alter table 表 drop column newfield
      

  3.   

    对不起,好几天没能上网,不知道已有这些高手进行了解答或讲解,特别是曾给予我帮助的 pengdali(大力) ,你贴出的代码的确能找到重复行,所以先谢谢了。我准备将WhUser表的wxcno列作为标识列,但前面不注意造成了重复值,因此我要对该列的值进行整理,因此目的是先找到重复行,然后,将其中一行的wxcno值保留,将另外一行或几行的wxcno的值改成其他值,当然改后的新值不能与其它行的wxcno值相同,即保证该值的唯一性,菜鸟感觉不用循环或游标好象无法实现。请pengdali(大力) 大侠继续指点怎样用循环或游标实现,当然。
      

  4.   

    大侠pengdali(大力)请你伸出援助之手,我一定会把分献给你的,激盼之中!