sql语句吧 关注:125贴子:244
  • 4回复贴,共1
  • 61.189.154.*
怎样用SQL语句来查询一个表中重复的列?谢谢


1楼2005-09-12 20:57回复
    • 222.65.64.*
    slec * from table


    2楼2005-10-17 16:47
    回复
      • 218.16.81.*
      select * from table where id in (select id from table where count(id) <> 1)
      查重复行


      3楼2005-10-20 16:50
      收起回复