首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
牛客808484225号
获赞
8
粉丝
0
关注
2
看过 TA
10
男
南京工程学院
2020
Java
IP属地:江苏
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑牛客808484225号吗?
发布(108)
评论
刷题
牛客808484225号
关注TA,不错过内容更新
关注
2022-09-14 11:42
南京工程学院 Java
题解 | #计算25岁以上和以下的用户数量#
select case when age<25 or age is null then "25岁以下" when age>=25 then "25岁及以上" end as age_cut, count(*) number from user_profile group by age_cut;
0
点赞
评论
收藏
分享
2022-09-14 11:41
南京工程学院 Java
题解 | #查找山东大学或者性别为男生的信息#
select device_id,gender,age,gpa from user_profile where university='山东大学' union all select device_id,gender,age,gpa from user_profile where gender='male';
0
点赞
评论
收藏
分享
2022-09-14 11:40
南京工程学院 Java
题解 | #统计每个用户的平均刷题数#
select university ,difficult_level,count(qpd.question_id)/count(DISTINCT qpd.device_id) as avg_answer_cnt from user_profile as u inner join question_practice_detail as qpd on u.device_id = qpd.device_id inner join question_detail as qd on qpd.question_id = qd.question_id where university = '山东大学' gr...
0
点赞
评论
收藏
分享
2022-09-14 11:39
南京工程学院 Java
题解 | #计算用户的平均次日留存率#
SELECT COUNT(distinct q2.device_id,q2.date)/COUNT(distinct q1.device_id,q1.date) as avg_ret FROM question_practice_detail q1 LEFT JOIN question_practice_detail q2 ON q1.device_id=q2.device_id and datediff(q1.date,q2.date)=1
0
点赞
评论
收藏
分享
2022-09-14 11:39
南京工程学院 Java
题解 | #统计每种性别的人数#
SELECT substring_index(profile, ',', -1) as gender,COUNT(*) AS number FROM user_submit group by gender;
0
点赞
评论
收藏
分享
2022-09-14 11:36
南京工程学院 Java
题解 | #统计每个学校各难度的用户平均刷题数#
SELECT a. university, c. difficult_level, count(b. question_id)/count(distinct a. device_id) avg_answer_cnt from user_profile a JOIN question_practice_detail b on a. device_id = b. device_id JOIN question_detail c on b. question_id = c. questio...
0
点赞
评论
收藏
分享
2022-09-14 11:32
南京工程学院 Java
题解 | #统计每个学校的答过题的用户的平均答题数#
select u.university, count(u.university)/count(DISTINCT u.device_id)as answer from user_profile as u inner join question_practice_detail as q on u.device_id=q.device_id group by u.university;
0
点赞
评论
收藏
分享
2022-09-14 11:30
南京工程学院 Java
题解 | #浙江大学用户题目回答情况#
SELECT user_profile.device_id, question_practice_detail.question_id, question_practice_detail.result from user_profile inner join question_practice_detail where user_profile.university='浙江大学' and question_practice_detail.device_id = user_profile.device_id order by question_pract...
0
点赞
评论
收藏
分享
2022-09-13 09:35
南京工程学院 Java
题解 | #分组排序练习题#
select university,avg(question_cnt) as avg_question_cnt from user_profile group by university order by avg(question_cnt);
0
点赞
评论
收藏
分享
2022-09-13 09:33
南京工程学院 Java
题解 | #分组过滤练习题#
select university, avg(question_cnt) as avg_question_cnt, avg(answer_cnt) as avg_answer_cnt from user_profile group by university having avg(question_cnt) < 5 or avg(answer_cnt) < 20;
0
点赞
评论
收藏
分享
2022-09-13 09:31
南京工程学院 Java
题解 | #分组计算练习题#
select gender,university,count(id) as user_num, AVG(active_days_within_30) as avg_active_day, AVG(question_cnt) as avg_question_cnt from user_profile group by university,gender;
0
点赞
评论
收藏
分享
2022-09-13 09:28
南京工程学院 Java
题解 | #计算男生人数以及平均GPA#
select count(1),avg(gpa) from user_profile group by gender having gender='male'
0
点赞
评论
收藏
分享
2022-09-13 09:27
南京工程学院 Java
题解 | #查找GPA最高值#
select gpa from user_profile where university = '复旦大学' order by gpa desc limit 0,1
0
点赞
评论
收藏
分享
2022-09-13 09:25
南京工程学院 Java
题解 | #操作符混合运用#
select user_profile.device_id,user_profile.gender,user_profile.age,user_profile.university,user_profile.gpa from user_profile where (user_profile.gpa>3.5 and user_profile.university="山东大学") or (user_profile.gpa>3.8 and user_profile.university="复旦大学")
0
点赞
评论
收藏
分享
2022-09-13 09:24
南京工程学院 Java
题解 | #Where in 和Not in#
select device_id, gender, age, university, gpa from user_profile where university in ('北京大学','复旦大学','山东大学');
0
点赞
评论
收藏
分享
1
2
3
4
5
6
8
关注他的用户也关注了:
牛客网
牛客企业服务