#平均绩点大于3.6且总人数大于2的学校里学生情况#

平均绩点大于3.6且总人数大于2的学校里学生情况

https://www.nowcoder.com/practice/5efb7d06f3e944ec81c40193b22c4b5f

select 
university
,count(device_id) total_cnt
,count(case when gender='male' then 1 else null end) male_cnt
,count(case when gender='female' then 1 else null end) female_cnt
,count(case when age<23 then device_id else null end) lt23_cnt
from user_profile
group by university
having avg(gpa)>3.6 
and count(device_id)>2;

全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
点赞 1 评论
分享
牛客网
牛客企业服务