Select Distinct * from materielhead

解决方案 »

  1.   

    select distinct * from materielhead
      

  2.   

    Select Distinct * from materielhead
    paoluo(一天到晚游泳的鱼) 真是快啊如果想把重复的数据删除可以
    select distinct * into #t from materielhead
    delete from materielhead
    insert into materielhead select * from #t
    drop table #t
      

  3.   

    以上是查询,如果是要将重复的删除。Select Distinct * Into #T from materielheadTruncate Table materielheadInsert Into materielhead Select * from #TDrop Table #T
      

  4.   

    以上是查询,如果是要将重复的删除。Select Distinct * Into #T from materielheadTruncate Table materielheadInsert Into materielhead Select * from #TDrop Table #T
      

  5.   

    你比我更快,我贴上去的时候CSDN不行了,再贴上去的时候说有人在使用进程,我就知道被人抢先了。^_^
      

  6.   

    select * from table1 gropy by fg,mmreccode