SELECT
COUNT(IF(r.channel_type=1,1,0)) AS wangzhan,
COUNT(IF(r.channel_type=2,1,0)) baozhi,
COUNT(IF(r.channel_type=3,1,0)) zazhi,
SUM(CASE WHEN r.channel_type=1 AND r.check_status=6 THEN 1 ELSE 0 END) AS wangzhanluyong,
(CASE WHEN r.channel_type=1 THEN sum(r.fraction) ELSE 0 END) AS wangzhanfenshu,
sum(CASE WHEN r.channel_type=2 AND r.check_status=6 THEN 1 ELSE 0 END) AS baozhiluyong,
(CASE WHEN r.channel_type=2 THEN sum(r.fraction) ELSE 0 END) AS baozhifenshu,
sum(CASE WHEN r.channel_type=3 AND r.check_status=6 THEN 1 ELSE 0 END) AS zazhiluyong,(
CASE WHEN r.channel_type=3 THEN sum(r.fraction) ELSE 0 END) AS zazhifenshu
FROM
tougao_record r LEFT JOIN tougao t
ON r.tougao_id = t.id
WHERE
r.accept_company_id=100 AND t.create_at>='%2014-7-1%'
GROUP BY
r.channel_type
(1)数字
如果 Measures.CurrentMember 是空单元,则下面的示例返回 0,否则返回 1
IIf(IsEmpty(Measures.CurrentMember), 0, 1)
(2)字符串
如果Measures.CurrentMember 是空单元,则下面的字符串返回字符串"Yes",否则返回字符串"No"
IIf(IsEmpty(Measures.CurrentMember), "Yes", "No")
在Access中我可以用IIF函数进行统计汇总,比如,要知道实际应该交费的用户个数
Access写法:Select sum(iif(金额>0, 1,0)) as num from 费用
MS SQL写法:select sum(case when 金额>0 then 1 else 0 end) as num from 费用.