通辽可汗克鸽勃
通辽可汗克鸽勃
全部文章
分类
题解(29)
归档
标签
去牛客网
登录
/
注册
通辽可汗克鸽勃的博客
全部文章
(共31篇)
题解 | #连续签到领金币#
select uid,month,sum(gold) as coin from (select uid,date_format(dt,'%Y%m') as month, case mod(rank() over(partition by uid ,start order by dt ),7) wh...
2024-09-21
0
66
题解 | #每个年龄的学生在各学校最大数量#
select age,max(cnt) as max_cnt from (select age,university,count(id) as cnt from user_profile group by&nb...
Mysql
2022-07-20
4
482
题解 | #实习广场投递简历分析(三)#
题目总体不难,但有一点折腾了很久,就是使用date_format函数之后,时间戳格式改变为文本格式了,后面就不能使用year函数, 对于文本截取有很多函数都可以,当格式比较整齐使用left和right函数最方便, 有时候需要使用regexp_substr之类的函数功能更加强大 with base ...
Mysql
Oracle
2022-01-24
0
300
题解 | #最差是第几名(二)#
做题的时候提交了很多遍,其实也可以不用去匹配区间,根据总数的奇偶性分布计算也是可行的方案 with base as (select grade,IFNULL(sum(number) over(order by grade rows between UNBOUNDED preceding and...
Mysql
Oracle
2022-01-24
1
397
题解 | #近一个月发布的视频中热度最高的top3视频#
题目难度不大,但是细节很多,一定要仔细阅读文章要求。 select video_id, round((100*OVER_+5*like_+3*com+2*retweet)/(days+1),0) as hot_index from ( select vid.video_id,sum(if...
Mysql
Oracle
2021-12-27
0
372
题解 | #某乎问答最大连续回答问题天数大于等于3天的用户及其对应等级#
如何求连续打卡,以及连续签到得金币等问题就是用打卡日期减去该日期的排名,相减相同的为一个连续打卡的分组,然后记数即可 select id.author_id,author_level,cnt from ( SELECT author_id,first_day,count(distinct answe...
Mysql
2021-12-24
5
700
题解 | #某乎问答回答过教育类问题的用户里有多少用户回答过职场类问题#
select count(distinct author_id) from answer_tb ans LEFT join issue_tb iss using(issue_id) where author_id in (select author_id from answer_tb ans ...
Mysql
Oracle
2021-12-24
0
386
题解 | #某乎问答单日回答问题数大于等于3个的所有用户#
select answer_date,author_id,count(char_len) as cnt from answer_tb where month(answer_date)=11 group by answer_date,author_id having cnt>=3 order b...
Mysql
2021-12-24
0
329
题解 | #某乎问答高质量的回答中用户属于各级别的数量#
回答数为0 的不显示,题目应该更严谨 select case when author_level between 5 and 6 then "5-6级" when author_level between 3 and 4 then "3-4级" els...
Mysql
2021-12-24
2
456
题解 | #牛客直播各科目同时在线人数#
时间戳排序,添加标签然后累计求和即可,常见考题 select course_id,course_name,max(num) from (select course_tb.course_id , course_name,sum(sign) over(partition by cours...
Mysql
Oracle
2021-12-23
0
375
首页
上一页
1
2
3
4
下一页
末页