首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
麻薯仙人
美团_数据开发实习生(实习员工)
获赞
13
粉丝
0
关注
10
看过 TA
77
第一拖拉机制造厂拖拉机学院
2026
大数据开发工程师
IP属地:北京
经济类逃荒转码难民
私信
关注
拉黑
举报
举报
确定要拉黑麻薯仙人吗?
发布(13)
麻薯仙人
关注TA,不错过内容更新
关注
06-05 13:21
美团_数据开发实习生(实习员工)
ali子公司数开面经
时间挺短的,拷打实习做的内容+数仓八股+老生常谈MR流程,数据倾斜,口头约二面。
0
点赞
评论
收藏
分享
06-05 13:19
美团_数据开发实习生(实习员工)
蔚来数据开发面经
问实习时间到岗时间+八股(hadoop全家桶,数仓建模理论)+项目拷打+sql口述思路,问了下技术栈,感觉更喜欢代码能力强的(泪目,我要练代码!),没有当面说后续流程应该机会不大咯,当默拒咯。
查看5道真题和解析
0
点赞
评论
收藏
分享
05-14 15:16
美团_数据开发实习生(实习员工)
26滴滴秋储数据研发一面凉经
全程简历实习经历项目拷打,0八股+两道sql+1道不知道该怎么形容的题,还傻乎乎问劳斯这个题是写算法吗,她说找个语言能实现就行(放弃)10min秒挂
0
点赞
评论
收藏
分享
03-25 20:48
美团_数据开发实习生(实习员工)
题解 | 统计每个产品的销售情况
select t1.product_id, total_sales, unit_price, total_quantity, avg_monthly_sales, max_monthly_quantity, customer_age_group from ( select a.product_id, sum(quantity * unit_price) as total_sales, max(unit_price) as unit_price, sum(quantity) as total_quantity, round(sum(quantity * unit_price) / 12, 2) ...
0
点赞
评论
收藏
分享
03-20 13:38
美团_数据开发实习生(实习员工)
题解 | 每个顾客购买的最新产品名称
select customer_id,customer_name,product_name as latest_order from( select a.customer_id,customer_name,product_name,dense_rank()over(partition by a.customer_id order by order_date desc) as rk from orders a left join customers b using(customer_id) left join products c using(product_id))d where rk =1 ...
0
点赞
评论
收藏
分享
03-20 13:29
美团_数据开发实习生(实习员工)
题解 | 输出播放量最高的视频
select cid,round(max(peak_uv),3) as max_peak_uv from( select cid,sum(tag)over(partition by cid order by time) as peak_uv from( select cid,start_time as time,1 as tag from play_record_tb union all select cid,end_time as time,-1 as tag from play_record_tb)a)b group by cid order by max_peak_uv desc lim...
0
点赞
评论
收藏
分享
03-20 13:23
美团_数据开发实习生(实习员工)
题解 | 返回顾客名称和相关订单号以及每个订单的总价
select cust_name,a.order_num,sum(quantity*item_price) as OrderTotal from OrderItems a left join Orders b using(order_num) left join Customers c using(cust_id) group by cust_name,a.order_num order by cust_name,a.order_num 三表关联,按照客户姓名和订单名聚合,使用sum对每个小订单额(数量*价格)求和
0
点赞
评论
收藏
分享
03-20 13:14
美团_数据开发实习生(实习员工)
题解 | 未下单用户统计
select count(distinct a.uid) as cnt from user_info a left join order_log b using(uid) where order_id is null
0
点赞
评论
收藏
分享
03-20 13:10
美团_数据开发实习生(实习员工)
题解 | 播放量峰值top3高的视频
select cid,round(max(peak_uv),3) as max_peak_uv from( select cid,sum(tag)over(partition by cid order by time) as peak_uv from( select cid,start_time as time,1 as tag from play_record_tb union all select cid,end_time as time,-1 as tag from play_record_tb)a)b group by cid order by max_peak_uv desc lim...
0
点赞
评论
收藏
分享
03-20 13:04
美团_数据开发实习生(实习员工)
题解 | 用户订单信息查询
select city,sum(total_amount) as total_order_amount from orders a join customers b using(customer_id) group by city order by total_order_amount desc,city
0
点赞
评论
收藏
分享
03-20 13:00
美团_数据开发实习生(实习员工)
题解 | 未下单用户登陆渠道统计
select channel,count(a.uid) as cnt from user_info a left join order_log b using(uid) where order_id is null group by channel order by cnt,channel limit 1
0
点赞
评论
收藏
分享
03-20 12:53
美团_数据开发实习生(实习员工)
题解 | 最受欢迎的top3课程
select a.cid,count(1) as pv,round(sum(timestampdiff(minute,start_time,end_time)),3) as time_len from play_record_tb a left join course_info_tb b using(cid) where datediff(start_time,release_date)<7 group by a.cid having avg(score)>=3 order by pv desc, time_len desc limit 3
0
点赞
评论
收藏
分享
03-20 12:51
美团_数据开发实习生(实习员工)
题解 | 更新员工信息表
select EMPLOYEE_ID, if(UPDATE_DT>LAST_UPDATE_DT,NEW_POSITION ,POSITION) as POSITION, if(UPDATE_DT>LAST_UPDATE_DT,UPDATE_DT,LAST_UPDATE_DT) as LAST_UPDATE_DT from( select EMPLOYEE_ID,UPDATE_DT,NEW_POSITION from( select EMPLOYEE_ID,UPDATE_DT,NEW_POSITION,row_number()over(partition by EMPLOYEE_ID...
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务