柠檬也有梦 2020-06-19 10:58 采纳率: 50%
浏览 696
已采纳

sqlserver 如何使用count在一条数据中查询呢

两个查询sql如何合并在一起呢

select
'区域' as Area,
'名称' as MineName,
count(1) as '在线'
from sys_PointInfo 
where sysCode=121  and Value =0
group by Area,MineName

select
'区域' as Area,
'名称' as MineName,
count(1) as '不在线'
from sys_PointInfo 
where sysCode=121  and (Value !=0 or value is null)
group by Area,MineName 

图片说明

  • 写回答

2条回答 默认 最新

  • FEN_TA 2020-06-19 13:59
    关注

    select
    '区域' as Area,
    '名称' as MineName,
    count(case when Value =0 then 1 end) as '在线',
    count(case when (Value !=0 or value is null) then 1 end) as '不在线'
    from sys_PointInfo
    where sysCode=121
    group by Area,MineName

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?