Alina_0229
Alina_0229
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Alina_0229的博客
全部文章
/ 题解
(共80篇)
题解 | #统计每个用户的平均刷题数#
select up.university,qd.difficult_level,COUNT(qp.question_id) / count(DISTINCT(up.device_id)) as avg_answer_cnt from user_profile as up, question_prac...
Mysql
2022-02-20
0
238
题解 | #浙江大学用户题目回答情况#
select p.university,qd.difficult_level count(d.questioin_id) / count(distinc(p.device_id))as avg_answer_cnt from user_profile p join question_practice...
Mysql
2022-02-20
0
258
题解 | #浙江大学用户题目回答情况#
#答题总数量 select count(question_id) from question_practice_detail #用户id select count(distinct device_id) from user_profile 最终结果: select p.university,coun...
Mysql
2022-02-20
0
203
题解 | #浙江大学用户题目回答情况#
#question_practice_detail表用户答题情况 select id,question_id,result from question_practice_detail #将user_profile 与question_practice_detail表进行合并 select * fro...
Mysql
2022-02-19
1
289
题解 | #分组排序练习题#
#学校的平均发帖情况 select avg(question_cnt) from user_profile group by university 得出结果: select university,avg(question_cnt) as avg_question_cnt from user_prof...
Mysql
2022-02-19
0
291
题解 | #分组过滤练习题#
#依据学校得出的平均发帖数 select avg(question_cnt) from user_profile group by university #依据学校的出的平均回贴数 select avg(answer_cnt) from user_profile group by universi...
Mysql
2022-02-19
0
302
题解 | #分组计算练习题#
关于分组的题本人做的不是特别的好,一旦条件复杂了我就无从下手,但是想起来老师说的一句话,程序是一遍一遍打磨,一次一次磨练出来的,从不完美到完美,为此我根据题意一句一句进行拆解: #30天内平均活跃天数和平均发帖数量 select avg(active_days_within_30),avg(ques...
Mysql
2022-02-19
14
672
题解 | #计算男生人数以及平均GPA#
使用分组,然后对分组值进行过滤,having 等同于where,where使用于现有值进行过滤,having 使用于对未在表中出现的值(分组)进行过滤 select count(gender),avg(gpa) from user_profile group by gender having gen...
Mysql
2022-02-19
0
211
题解 | #Where in 和Not in#
select device_id,gender,age,university,gpa from user_profile where university="北京大学" or university="山东大学" or university="复旦大学" in 相当于or ,这里也可以用or 进行操作
Mysql
2022-02-19
0
250
题解 | #操作符混合运用#
select device_id,gender,age,university,province,gpa from user_profile where (gpa>3.5 and university="山东大学") or (gpa>3.8 and university="复旦大学")
2022-02-17
0
172
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页