Brawler
Brawler
全部文章
分类
未归档(3)
题解(2)
归档
标签
去牛客网
登录
/
注册
Brawler的博客
全部文章
(共7篇)
题解 | #每类试卷得分前3名#
with temp as( select a.uid, b.tag as tid, max(score) as max, min(score) as min from exam_record as a left join examination_info as b ...
2024-08-22
0
108
题解 | #某宝店铺连续2天及以上购物的用户及其对应的天数#
select user_id, count(1) as days_count from (select user_id, row_number() over (partition by user_id order by sales_date) as flag, ...
2024-07-23
0
167
题解 | #某店铺的各商品毛利率及店铺整体毛利率#
with temp as ( select a.product_id, a.in_price, b.total_amount, b.total_cnt, c.cnt, c.price, ...
2024-07-07
0
180
题解 | #2021年11月每天的人均浏览文章时长#
select substr(in_time,1,10) as dt, round(sum(TIMESTAMPDIFF(SECOND, in_time, out_time)) / count(distinct uid), 1) as avg_viiew_len_sec from tb_...
2024-07-04
0
158
字节 提前批 大数据分析工程师 1,2,3面面经~
来回馈牛友萌~一面(7.18)、二面(7.22)、三面(7.28)、oc(8.19) 一面: 自我介绍 讲一个自己想讲的项目,用讲故事的方式表达a. 北极星指标是什么b. 为什么项目中用了千次曝光点赞这个指标 1概率题+1统计题+3*SQL题 (统计题没做出来) 抖音快手同时开一个关于奥运会的活动...
2021-08-23
4
1467
题解 | -union all 解法
---union all 解法select date, count(distinct user_id) as newfrom(select user_id, min(date) as datefrom logingroup by user_id) as agroup b...
2021-06-23
0
577
字节Tiktok业务数据分析实习面经 (战略部 Base 上海)
一面:(直系数据分析leader 技术+业务)1.自我介绍2.项目深挖(数据挖掘项目+数据分析项目)3.Python爬虫(实习经历有写所以问到)4.数据指标异动分析: 某个国家的DAU下降了,怎么分析?5.怎样估算微信视频号使用人数?6.字节单列 vs 快手双列对比--- 这个时候面试官突然被通知要...
2021-02-11
6
4435