首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
NiCaprio
获赞
0
粉丝
0
关注
8
看过 TA
3
男
门头沟学院
2024
Java
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑NiCaprio吗?
发布(13)
评论
刷题
NiCaprio
关注TA,不错过内容更新
关注
门头沟学院 Java
原内容已删除
0
点赞
评论
收藏
分享
2023-08-19 22:29
门头沟学院 Java
题解 | #统计每个学校的答过题的用户的平均答题数#
select university, count(question_id) / count(distinct qpd.device_id) as avg_answer_cnt from question_practice_detail as qpd inner join user_profile as up on qpd.device_id = up.device_id group by university
0
点赞
评论
收藏
分享
2023-08-19 22:19
门头沟学院 Java
题解 | #浙江大学用户题目回答情况#
select qpd.device_id, qpd.question_id, qpd.result from question_practice_detail as qpd inner join user_profile as up on up.device_id=qpd.device_id and up.university='浙江大学' order by question_id
0
点赞
评论
收藏
分享
2023-08-02 21:38
门头沟学院 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
点赞
评论
收藏
分享
2023-08-02 21:32
门头沟学院 Java
题解 | #分组计算练习题#
select gender, university, count(device_id) as user_num, avg(active_days_within_30) as avg_active_days, avg(question_cnt) as avg_quesion_cnt from user_profile group by gender, university;
0
点赞
评论
收藏
分享
2023-08-02 21:19
门头沟学院 Java
题解 | #查找GPA最高值#
select max(gpa) as gpa from user_profile where university = "复旦大学"; select gpa from user_profile where university = "复旦大学" order by gpa desc limit 1;
0
点赞
评论
收藏
分享
2023-08-02 21:10
门头沟学院 Java
题解 | #Where in 和Not in#
select device_id, gender, age, university, gpa from user_profile where university in ("北京大学", "复旦大学", "山东大学");
0
点赞
评论
收藏
分享
2023-08-02 21:08
门头沟学院 Java
题解 | #高级操作符练习(2)#
select device_id, gender, age, university, gpa from user_profile where university = "北京大学" or gpa > 3.7;
0
点赞
评论
收藏
分享
2023-08-02 21:06
门头沟学院 Java
题解 | #高级操作符练习(1)#
select device_id, gender, age, university, gpa from user_profile where gpa > 3.5 and gender = "male";
0
点赞
评论
收藏
分享
2023-08-02 21:03
门头沟学院 Java
题解 | #查找后降序排列#
select device_id, gpa, age from user_profile order by gpa desc, age desc;
0
点赞
评论
收藏
分享
2023-08-02 21:01
门头沟学院 Java
题解 | #查找后多列排序#
select device_id, gpa, age from user_profile order by gpa asc, age asc;
0
点赞
评论
收藏
分享
2023-08-02 20:58
门头沟学院 Java
题解 | #查找后排序#
select device_id, age from user_profile order by age asc;
0
点赞
评论
收藏
分享
2023-08-02 20:56
门头沟学院 Java
题解 | #用where过滤空值练习#
select device_id, gender, age, university from user_profile where age is not null;
0
点赞
评论
收藏
分享
1
关注他的用户也关注了:
牛客网
牛客企业服务