首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

求一条简单sql,大家帮小弟我写下

2013-07-08 
求一条简单sql,大家帮我写下。分组统计,a列大于10,b列大于20,c列大于30的数据。谢谢。分组统计[解决办法]sele

求一条简单sql,大家帮我写下。
分组统计,a列大于10,b列大于20,c列大于30的数据。

谢谢。 分组统计
[解决办法]
select 
count(case when a>10 then 1 else null end), 
count(case when b>20 then 1 else null end),
count(case when c>30 then 1 else null end)
from 表

热点排行