sql 统计人数

SQL查询,在student表中有字段名为subject,name,stu_id,birthday,address,class,memo,请查询所有subject为英语,... SQL查询,在student表中有字段名为subject,name,stu_id,birthday,address,class,memo,请查询所有subject为英语,政治,数学,计算机,C语言编程的学生并统计出人数! 展开
 我来答
小寒爱旅游
推荐于2017-11-23 · TA获得超过1054个赞
知道小有建树答主
回答量:327
采纳率:100%
帮助的人:162万
展开全部
select count(stu_id) from student where subject in{‘英语’,‘政治’,‘数学’,‘计算机’,‘C语言编程'}
上述SQL语句为查询科目为这五门课的学生总数,如果用count(*),可能没有剔除重复记录,所以用count(stu_id)

select subject, count(stu_id) from student where subject in{‘英语’,‘政治’,‘数学’,‘计算机’,‘C语言编程'} group by subject
分别查询上述五门科目,每门科目的学生总数,返回的是这样的数据对(pair):(英语,50) (政治, 45)……

select distinct name from student where subject in{‘英语’,‘政治’,‘数学’,‘计算机’,‘C语言编程'}
查询选择上述五门课的所有学生名字,必须加上关键词distinct,以除去重复的名字(比如同一个学生可以同时选上述五门课)

select subject, distinct name from student where subject in {‘英语’,‘政治’,‘数学’,‘计算机’,‘C语言编程'}group by subject
分别查询上述五门科目各科的学生名字,返回结果为(科目,学该科目的学生名字)
滨边f7
2010-06-06 · TA获得超过126个赞
知道小有建树答主
回答量:178
采纳率:0%
帮助的人:143万
展开全部
select (select count(*) from student where subject ='英语' ) as 英语人数,(select count(*) from student where subject ='政治') as 政治人数,(select count(*) from student where subject ='数学')as 数学人数,(select count(*) from student where subject ='计算机')as 计算机人数,(select count(*) from student where subject ='C预言编程')as C预言编程
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
华夏日长兴
2010-06-06 · TA获得超过9593个赞
知道大有可为答主
回答量:6305
采纳率:85%
帮助的人:3755万
展开全部
select subject,count(*) cnt from student where subject in ('英语','政治','数学','计算机','C语言编程') group by subject
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式