数据表A 字段 a1,a2,a3,a4 a3是int类型 其他vachar
想把 A表中 按 a1分组,把a3不等于 0的 所有a2的 行数计算出来。。select a1,count(a2)   from A group by a1
请问这里怎么做判断 ,count(a2)  计算出 a3不等于0时,所有a2的行数?

解决方案 »

  1.   

    select a1,a2=count(1)  from A where a3<>0 group by a1 
      

  2.   

    select a1,count(*) from A where a3!=0 group by a1 
      

  3.   

    忘记要说A3要在SELECT中判断 不能出现在WHERE子句里
      

  4.   

    select a1,a2=sum(case when a3<>0 then 1 else 0 end) 
     from A 
    group by a1 
      

  5.   


    declare @table table (a1 varchar(1),a2 varchar(1),a3 int,a4 varchar(1))
    insert into @table
    select 'a','b',1,'d' union all
    select 'j','h',0,'d' union all
    select 'u','j',9,'j'select count(a2) from @table where a3<>0
    --为什么要放在select中判断?
      

  6.   

    select a1,a2=sum(case when a3<>0 then 1 else 0 end) 
     from A 
    group by a1 
      

  7.   

    select a1,a2=sum(case when a3<>0 then 1 else 0 end) 
     from A 
    group by a1 
      

  8.   

    select a1,sum(case when a3<>0 then 1 else 0 end) from A group by a1 
      

  9.   

    select a1,a2=sum(case when a3<>0 then 1 else 0 end) 
     from A 
    group by a1