蚂蚁的:去除重复值
如果有ID字段,就是具有唯一性的字段delect table where id not in (  select max(id) from table group by col1,col2,col3...
)
group by 子句后跟的字段就是你用来判断重复的条件,如只有col1,那么只要col1字段内容相同即表示记录相同。2,如果是判断所有字段也可以这样
  select * into #aa from table group by id1,id2,....
  delete table 
  insert into table 
  select * from #aa3,没有ID的情况select identity(int,1,1) as id,* into #temp from tabel
delect # where id not in (
  select max(id) from # group by col1,col2,col3...)
delect table
inset into table(...)
   select ..... from #temp
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字段内容相同即表示记录相同。2,
select identity(int,1,1) as id,* into #temp from tabel
select * from  #temp where id in (
  select max(id) from #emp where having count(*)>1 group by col1,col2,col3...)

解决方案 »

  1.   

    用临时表:--将不重复的数据备份到临时表
    select distinct * into #temp from 原表--删除原表内容
    truncate table 原表--从临时表中导回数据
    insert into 原表 select * from #temp--删除临时表
    drop table #temp
      

  2.   

    从效率上考虑,还可以用:--将不重复的数据备份到新表
    select distinct * into temp from 原表--删除原表
    drop table 原表--将备份表改为原表
    sp_rename 'temp','原表'
      

  3.   


      但是,我的数据库是access 操作老是说我什么字段太小,叫我插入少一点的数据,这是怎么一回事阿
    ??我该怎么办?
      

  4.   

    没必要,你取数据得时候用 select distinct * from table就可以了