count(*)>1)
select name from table where name in(select name from table group by name having 

解决方案 »

  1.   


    Select c1 from table2 Group by c1 Having Count(c1)>1
      

  2.   


    select c1 from table2 A where (select count(1) from table2 where c1=a.c1)>1
      

  3.   

    select name from table where name in(select name from table group by name having count(*)>1)
      

  4.   


    select c1 from table2 group by c1 having count(*) >1
      

  5.   

    select * from table2 t where (select count(1) from table2 where c1=t.c1) > 1;
      

  6.   


    ---sinpoal
    select t.id from test t 
         group by t.id having count(*)>=2
      

  7.   

    分组,在统计出现次数大于1的,group by c1 having count(C1)>1
      

  8.   

    select * from table1 as a
    where (select count(*) from table1 where c1=a.c1)>1
    order by c1