首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
何大春
获赞
0
粉丝
0
关注
0
看过 TA
3
漯河食品职业学院
2001
Java
IP属地:浙江
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑何大春吗?
发布(9)
评论
刷题
收藏
何大春
关注TA,不错过内容更新
关注
2023-08-15 22:38
漯河食品职业学院 Java
题解 | #统计每个学校的答过题的用户的平均答题数#
select b.university, COUNT(a.question_id)/count(distinct a.device_id) as avg_answer_cnt from question_practice_detail as a JOIN user_profile as b on a.device_id = b.device_id GROUP BY b.university;
0
点赞
评论
收藏
分享
2023-07-19 07:03
漯河食品职业学院 Java
题解 | #21年8月份练题总数#
select count(distinct device_id) as did_cnt, count(question_id) as question_cnt from question_practice_detail where date like "2021-08%";
0
点赞
评论
收藏
分享
2023-07-18 20:35
漯河食品职业学院 Java
题解 | #查找后多列排序#
select device_id,gpa,age from user_profile order by gpa,age asc;
0
点赞
评论
收藏
分享
2023-07-12 12:53
漯河食品职业学院 Java
题解 | #分组过滤练习题#
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
点赞
评论
收藏
分享
2023-07-11 18:22
漯河食品职业学院 Java
题解 | #高级操作符练习(1)#
select device_id,gender,age,university,gpa from user_profile where gender='male' and gpa>3.5;
0
点赞
评论
收藏
分享
2023-07-11 17:22
漯河食品职业学院 Java
题解 | #查找学校是北大的学生信息#
select device_id,university from user_profile where university='北京大学';
0
点赞
评论
收藏
分享
2023-07-11 15:28
漯河食品职业学院 Java
题解 | #查询结果去重#
select distinct university from user_profile;
0
点赞
评论
收藏
分享
2023-07-11 15:09
漯河食品职业学院 Java
题解 | #查询多列#
select device_id,gender,age,university from user_profile;
0
点赞
评论
收藏
分享
2023-07-11 14:56
漯河食品职业学院 Java
题解 | #查找后排序#
select device_id,age from user_profile order by age asc;
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务