首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
**xy
获赞
0
粉丝
0
关注
6
看过 TA
1
山东工商学院
2022
数据运营
IP属地:天津
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑**xy吗?
发布(8)
评论
刷题
收藏
**xy
关注TA,不错过内容更新
关注
2024-08-01 15:40
山东工商学院 数据运营
题解 | #话题的分布情况#
select substring_index(subject_set,",",1) as subject_id1,count(distinct id) cnt from comment_detail where find_in_set("1002",subject_set)=2 group by subject_id1;
0
点赞
评论
收藏
分享
2024-07-31 17:42
山东工商学院 数据运营
题解 | #输出在5min内完成点击购买的用户ID#
select a.user_id uid from user_ad_click_time a left join user_payment_time b on a.user_id=b.user_id and a.trace_id=b.trace_id where TIMESTAMPDIFF(MINUTE, a.click_time, b.pay_time) < 5 order by uid desc;
0
点赞
评论
收藏
分享
2024-07-31 14:28
山东工商学院 数据运营
题解 | #查询每天刷题通过数最多的前二名用户id和刷题数#
select date,user_id,pass_count from (select date,user_id,pass_count ,rank() over(partition by date order by pass_count desc ) rk from questions_pass_record ) t where rk<=2 order by date;
0
点赞
评论
收藏
分享
2024-05-10 20:50
山东工商学院 数据运营
题解 | #统计复旦用户8月练题情况#
select distinct u.device_id,u.university,count(q.question_id) as question_cnt, sum(if(q.result="right",1,0)) as right_question_cnt from user_profile as u left join question_practice_detail as q on u.device_id=q.device_id where u.university="复旦大学" and month(q.date)=8 group by u.de...
0
点赞
评论
收藏
分享
2024-05-06 18:33
山东工商学院 数据运营
题解 | #统计每个学校各难度的用户平均刷题数#
select u.university,d.difficult_level,count(q.question_id)/count(distinct q.device_id) avg_answer_cnt from user_profile u,question_practice_detail q,question_detail d where u.device_id=q.device_id and q.question_id=d.question_id group by u.university,d.difficult_level;
0
点赞
评论
收藏
分享
2024-05-06 18:00
山东工商学院 数据运营
题解 | #浙江大学用户题目回答情况#
select u.device_id,q.question_id,q.result from user_profile u,question_practice_detail q where u.device_id=q.device_id and u.university="浙江大学";
0
点赞
评论
收藏
分享
2024-05-04 20:25
山东工商学院 数据运营
题解 | #计算用户8月每天的练题数量#
select day(date) as day,count(device_id) as question_cnt from question_practice_detail where month(date)=8 group by day;
0
点赞
评论
收藏
分享
2024-05-04 20:20
山东工商学院 数据运营
题解 | #截取出年龄#
select substring_index(substring_index(profile,",",3),"," ,-1)as age,count(device_id) as number from user_submit group by age;
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务