首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
应届想染班味
获赞
125
粉丝
8
关注
18
看过 TA
642
中国劳动关系学院
2025
大数据开发工程师
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑应届想染班味吗?
发布(12)
评论
刷题
收藏
应届想染班味
关注TA,不错过内容更新
关注
11-26 15:31
中国劳动关系学院 大数据开发工程师
题解 | #每类视频近一个月的转发量/率#
-- 开窗判断时间会简单点。。。 select tag,sum(if_retweet),round(sum(if_retweet)/count(if_retweet),3) from tb_user_video_log left join tb_video_info using(video_id) where date(end_time)<=( select date(max(end_time)) from tb_user_video_log ) and date(end_time)>( select date(max(end_time))- interval 30 day...
0
点赞
评论
收藏
分享
11-26 14:44
中国劳动关系学院 大数据开发工程师
题解 | #平均播放进度大于60%的视频类别#
-- 保留小数这个块有点无语 搞不明白 select tag,concat(round(round(avg(lt),4)*100,2),'%') as avgp from ( select tag, case when look_time/duration>1 then 1 else look_time/duration end as lt from ( select video_id,TIMESTAMPDIFF(SECOND,start_time,end_time) as look_time from tb_user_video_log ) t left join tb_v...
0
点赞
评论
收藏
分享
11-26 11:50
中国劳动关系学院 大数据开发工程师
题解 | #各个视频的平均完播率#
-- 简单得有点无聊 select video_id,round(sum(isend)/count(looktime),3) avg_comp_play_rate from ( select video_id, case when tb.duration<=uvl.looktime then 1 else 0 end as isend,uvl.looktime from tb_video_info tb right join( select video_id,end_time-start_time looktime from tb_user_video_log where ...
0
点赞
评论
收藏
分享
11-21 10:54
中国劳动关系学院 大数据开发工程师
题解 | #插入记录(一)#
休闲一下 insert into exam_record (uid,exam_id,start_time,submit_time,score) values (1001,9001,'2021-09-01 22:11:12','2021-09-01 23:01:12',90), (1002,9002,'2021-09-04 07:01:02',NULL,NULL);
0
点赞
评论
收藏
分享
11-21 10:23
中国劳动关系学院 大数据开发工程师
题解 | #统计复旦用户8月练题情况#
-- 这竟然是困不敢相信。。。 select device_id,max(university) university, count(case when month(date)=8 then 1 else null end) question_cnt, sum(case when month(date)=8 and result='right' then 1 else 0 end ) as right_question_cnt from (select u.*,q.question_id,q.result,q.date from user_profile u left joi...
0
点赞
评论
收藏
分享
11-20 16:56
中国劳动关系学院 大数据开发工程师
题解 | #近一个月发布的视频中热度最高的top3视频#
with t1 as( select *,date_sub(max_et,interval 29 day) haed_time from( select tuvl.*,tvi.duration,tvi.release_time, date(max(end_time) over())as max_et from tb_user_video_log tuvl left join tb_video_info tvi using(video_id) ) tmp ), -- 过滤掉非一个月内的数据,并打上是否完播的标签 t2 as( select *,case when TIMESTAMPDI...
0
点赞
评论
收藏
分享
11-20 11:51
中国劳动关系学院 大数据开发工程师
题解 | #连续签到领金币#
-- 1.筛选出 有效数据 with t1 as ( select * from tb_user_log where in_time > '2021-07-07 00:00:00' and in_time <'2021-11-01 00:00:00' and artical_id=0 and sign_in=1 ), -- 时间减去等差数列 算连续值 t2 as( select uid,in_time, date_sub(date(in_time),INTERVAL n day) gk from ( select uid,in_time, row_number() over...
0
点赞
评论
收藏
分享
11-13 02:07
中国劳动关系学院 大数据开发工程师
家人们问个问题。
我看大家的面经还有朋友的经历。数字马力一面完都是2 3天就约2面了,我这一面完一周了咋还没消息呀紧张,显示复试是真通过了,还是面完就跳复试啊,这个复试会不会是假的啊,毕竟面得一般……😑😑
0
点赞
评论
收藏
分享
08-18 14:35
中国劳动关系学院 大数据开发工程师
#你觉得实习只能是打杂吗?# 我选不是!实习不只是打杂,因为公司小
你觉得实习只能是打杂吗?
0
点赞
评论
收藏
分享
08-16 22:51
中国劳动关系学院 大数据开发工程师
题解 | #反转链表#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * public ListNode(int val) { * this.val = val; * } * } */ public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ...
0
点赞
评论
收藏
分享
08-16 22:32
中国劳动关系学院 大数据开发工程师
题解 | #反转链表#
import java.util.*; /* * public class ListNode { * int val; * ListNode next = null; * public ListNode(int val) { * this.val = val; * } * } */ public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param head ListNode类 * @return ...
0
点赞
评论
收藏
分享
08-03 20:22
中国劳动关系学院 大数据开发工程师
#你认为第一份工作重要吗# 我选重要!因为身边的大家都说重要哈哈哈,感觉会很重要吧,听说如果没有特别的机遇以后的工作就围绕第一份工作了,起步低那就低了。还是得认真找找。但是起步高本身就是一个机遇。应届的机遇会比社招的机遇大很多。所以重要。
你认为第一份工作重要吗
0
点赞
评论
收藏
分享
1
关注他的用户也关注了:
牛客网
牛客企业服务