首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
在研究求职打法的赖床专家很想按时下班
获赞
4
粉丝
0
关注
0
看过 TA
2
广东金融学院
2018
财务
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑在研究求职打法的赖床专家很想按时下班吗?
发布(22)
评论
刷题
在研究求职打法的赖床专家很想按时下班
关注TA,不错过内容更新
关注
2023-09-23 17:48
广东金融学院 财务
题解 | #浙大不同难度题目的正确率#
select qd.difficult_level , avg(if(q.result='right',1,0)) as correct_rate from user_profile u join question_practice_detail q on u.device_id =q.device_id join question_detail qd on q.question_id =qd.question_id where u.university='浙江大学' group by qd.difficult_level order by correct_rate
0
点赞
评论
收藏
分享
2023-09-23 17:28
广东金融学院 财务
题解 | #统计复旦用户8月练题情况#
select u.device_id , u.university, count(q.question_id ) as quesiton_cnt, sum(if(q.result='right',1,0)) as right_question_cnt from user_profile u join question_practice_detail q on u.device_id =q.device_id and month(q.date)='8' where university = '复旦大学' group by u.device_id 出错的原因在于第四行这里我用的count(resu...
0
点赞
评论
收藏
分享
2023-09-23 17:02
广东金融学院 财务
题解 | #找出每个学校GPA最低的同学#
select device_id , university, gpa from user_profile u1 where gpa <= (select min(gpa) from user_profile u2 where u1.university=u2.university group by university) order by university
0
点赞
评论
收藏
分享
2023-09-23 15:19
广东金融学院 财务
题解 | #截取出年龄#
select substring_index(substring_index(profile,',',-2),',',1) as age, count(device_id) as number from user_submit group by age
0
点赞
评论
收藏
分享
2023-09-23 15:11
广东金融学院 财务
题解 | #提取博客URL中的用户名#
select device_id, substring_index(blog_url,'/',-1) from user_submit
0
点赞
评论
收藏
分享
2023-09-23 15:03
广东金融学院 财务
题解 | #统计每种性别的人数#
select substring_index(profile,',',-1) as gender, count(device_id) as number from user_submit group by gender
0
点赞
评论
收藏
分享
2023-09-22 21:54
广东金融学院 财务
题解 | #查看不同年龄段的用户明细#
select device_id ,gender, case when age <20 then '20岁以下' when age >=25 then '25岁及以上' when age between 20 and 24 then '20-24岁' else '其他' end as 'age_cut' from user_profile
0
点赞
评论
收藏
分享
1
2
关注他的用户也关注了:
牛客网
牛客企业服务