统计汇总男生.女生的人数,请写出sql语句

统计汇总男生.女生的人数,请写出sql语句,第1张

select stuClass,count(stuName) 班级人数,sum(case when stuSex='男' then 1 else 0 end ) 男生人数,sum(case when stuSex='女' then 1 else 0 end ) 女生人数 from student group by stuClass

select

nv=(select count(*) from table where sex='女'),

nan=(select count(*) from table where sex='男')

from table

这样就可以分别统计男和女的数量了.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9243357.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-26
下一篇 2023-04-26

发表评论

登录后才能评论

评论列表(0条)

保存