select distinct * from table1

解决方案 »

  1.   

    select distinct dwbm,bh from 表
      

  2.   

    select max(dwbm),bh from table1 group by bh
    可以吗?
      

  3.   

    Select Distinct dwbm, bh From tablename
      

  4.   

    select *  from tablename,就可以显示你上面列的东西,如果你不想显示重复的就是这样
    select distinct dwbm,bh from tablename

    select distinct dwbm,distinct bh from tablename
      

  5.   

    select dwbm,distinct bh from tablename
      

  6.   


    select distinct dwbm, bh  from table1