from 城市表 a,企业表 b,汇总表 c
where a.id=b.cityID and b.id=c.regionID and a.id='1234'
group by a.id,a.城市名称
select a.城市,sum(case when 状态='0' then 1 else 0 end) 验收通过,sum(case when 状态='1' then 1 else 0 end) 验收未通过,
sum(case when 状态 is null then 1 else 0 end) 未验收
from 城市表 a,企业表 b,验收表 c
where a.id=b.cityid and b.id=c.regionid and a.id='1234'
group by a.城市
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)