首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
学习生1
获赞
3
粉丝
0
关注
2
看过 TA
15
安徽信息工程学院
2027
Python
IP属地:安徽
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑学习生1吗?
发布(209)
评论
刷题
收藏
学习生1
关注TA,不错过内容更新
关注
2024-11-19 13:05
安徽信息工程学院 Python
题解 | #统计每个学校的答过题的用户的平均答题数#
# select # user_profile.university as university, # round(count(question_practice_detail.question_id)/count(user_profile.device_id),4) as avg_answer_cnt # from user_profile,question_practice_detail # having user_profile.device_id=question_id.device_id # group by university # order by university desc...
0
点赞
评论
收藏
分享
2024-11-18 23:34
安徽信息工程学院 Python
题解 | #浙江大学用户题目回答情况#
select question_practice_detail.device_id as device_id, question_practice_detail.question_id as question_id, question_practice_detail.result as result from question_practice_detail,user_profile where question_practice_detail.device_id=user_profile.device_id and user_profile.university='浙江大学';
0
点赞
评论
收藏
分享
2024-11-18 23:28
安徽信息工程学院 Python
题解 | #分组排序练习题#
select university, round(avg(question_cnt),4) as avg_question_cnt from user_profile group by university order by avg_question_cnt
0
点赞
评论
收藏
分享
2024-11-18 23:20
安徽信息工程学院 Python
题解 | #分组过滤练习题#
select university, round(avg(question_cnt),3) as avg_question_cnt, round(avg(answer_cnt),3) as avg_answer_cnt from user_profile group by university having avg_question_cnt<5 or avg_answer_cnt<20;
0
点赞
评论
收藏
分享
2024-11-18 22:04
安徽信息工程学院 Python
题解 | #查找GPA最高值#
select max(gpa) as gpa from user_profile where university='复旦大学';
0
点赞
评论
收藏
分享
2024-11-18 21:59
安徽信息工程学院 Python
题解 | #查看学校名称中含北京的用户#
select device_id, age, university from user_profile where university like'%北京%';
0
点赞
评论
收藏
分享
2024-11-18 21:57
安徽信息工程学院 Python
题解 | #操作符混合运用#
select device_id, gender, age, university, gpa from user_profile where (gpa>3.5 and university='山东大学') or (gpa>3.8 and university='复旦大学');
0
点赞
评论
收藏
分享
2024-11-18 21:53
安徽信息工程学院 Python
题解 | #Where in 和Not in#
select device_id, gender, age, university, gpa from user_profile where university in ('北京大学','复旦大学','山东大学');
0
点赞
评论
收藏
分享
2024-11-18 21:50
安徽信息工程学院 Python
题解 | #高级操作符练习(2)#
select device_id, gender, age, university, gpa from user_profile where university='北京大学' or gpa>3.7;
0
点赞
评论
收藏
分享
2024-11-18 21:49
安徽信息工程学院 Python
题解 | #高级操作符练习(1)#
select device_id, gender, age, university, gpa from user_profile where gender = 'male' and gpa > 3.5;
0
点赞
评论
收藏
分享
2024-11-18 21:45
安徽信息工程学院 Python
题解 | #用where过滤空值练习#
select device_id,gender,age,university from user_profile where age>0;
0
点赞
评论
收藏
分享
2024-11-18 21:43
安徽信息工程学院 Python
题解 | #查找除复旦大学的用户信息#
select device_id,gender,age,university from user_profile where university !='复旦大学';
0
点赞
评论
收藏
分享
2024-11-18 21:40
安徽信息工程学院 Python
题解 | #查找某个年龄段的用户信息#
select device_id, gender, age from user_profile where age between 20 and 23;
0
点赞
评论
收藏
分享
2024-11-18 21:38
安徽信息工程学院 Python
题解 | #查找年龄大于24岁的用户信息#
select device_id,gender,age,university from user_profile where age>24;
0
点赞
评论
收藏
分享
2024-11-18 21:37
安徽信息工程学院 Python
题解 | #查找学校是北大的学生信息#
select device_id,university from user_profile where university='北京大学';
0
点赞
评论
收藏
分享
1
9
10
11
12
13
14
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务