数据表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,
      COUNT(DISTINCT A2) AS [A2CNT]
    FROM
      A
    WHERE 
      A3!=0
    GROUP BY 
      A1
    这样?
      

  2.   

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

  3.   

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

  4.   

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

  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 a1,a2=sum(case when a3<>0 then 1 else 0 end) 
    from @table group by a1
    /*
    a1   a2
    ---- -----------
    a    1
    j    0
    u    1
    */
      

  6.   

    select a1,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,a2=sum(case when a3<>0 then 1 else 0 end) 
     from A 
    group by a1 
      

  9.   


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

  10.   


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

  11.   


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

  12.   

    大家速度快呀,如果對于a3=0的記錄不需要顯示,就可以
    select a1,COUNT(a2) from @table where a3<>0 group by a1
      

  13.   

    用case when else end 完成
      

  14.   

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