我见烈焰
我见烈焰
全部文章
分类
题解(41)
归档
标签
去牛客网
登录
/
注册
我见烈焰的博客
全部文章
(共20篇)
题解 | #某乎问答最大连续回答问题天数大于等于3天的用户及其对应等级#
题目有个要求是最大连续回答问题天数大于等于3天,那按题意应该取一次max,留max_dyas_cnt作为days_cnt。 事实上其实只选出days_cnt>=3也没关系,当然是属于最大连续回答问题天数大于等于3的用户,但是如果同一用户有两个这种连续记录那么就会重复(本题没有出现这种情况),那...
Mysql
2022-03-05
0
372
题解 | #牛客直播各科目出勤率#
select course_id,course_name,round(cnt1/cnt2*100,2) as attend_rate from ( select course_id, course_name, count(distinct if(timestampdiff(se...
Mysql
2022-03-05
0
285
题解 | #某宝店铺连续2天及以上购物的用户及其对应的天数#
select user_id,count(distinct dt,dt1) as days_count from ( select user_id,dt,date_sub(dt,interval ranking day) as dt1 from ( select user_id, ...
Mysql
2022-03-04
0
276
题解 | #某宝店铺动销率与售罄率#尤其简单明了不易出错版!
select style_id, round(sum(item_sum)/sum(inventory-item_sum)*100,2) as pin_rate, round(sum(sales_price_sum)/sum(tag_price*inventory)*100,2) as...
Mysql
2022-03-04
0
264
题解 | #店铺901国庆期间的7日动销率和滞销率#
with t as ( select product_id,order_id,date(event_time) as dt,shop_id from tb_order_detail #order_id is not null,左连接选出的店铺和product_id都是有销量的 left jo...
Mysql
2022-03-04
0
327
题解 | #10月的新户客单价和获客成本#尤其通俗易懂版!结构化逻辑清楚
select round(avg(total_amount),1) as avg_amount, round(avg(price-total_amount),1) as avg_cost from ( select uid,order_id,total_amount,price,date...
Mysql
2022-03-04
0
286
题解 | #零食类商品中复购率top3高的商品#
select product_id, round(count(if(repurchase_cnt>1,uid,null))/count(uid),3) as repurchase_rate from ( select product_id,uid, count(if(dat...
Mysql
2022-03-04
0
292
题解 | #统计活跃间隔对用户分级结果#
思路: 分别以7,30天为节点划分成三个区间: 区间:A:[0,7], B:[8:30], C:[31,+) 新晋用户:只在A区间而不再B、C区间; 忠实用户:在A区间,但也在B或C区间; 沉睡用户:不在A、C区间,只在B区间; 流失用户:不在A、B区间,只在C区间。 select user_g...
Mysql
2022-03-03
0
384
题解 | #每个创作者每月的涨粉率及截止当前的总粉丝量#
关键:两次聚合函数的使用! 一次用于group by,一次用于窗口函数求累积和 select author, month, round(sum(if_follow)/count(start_time),3) as fans_growth_rate, sum(sum(if_fo...
Mysql
2022-03-02
0
346
题解 | #国庆期间每类视频点赞量和转发量#
select * from ( select tag,dt, sum(sum(if_like)) over(partition by tag order by dt rows 6 preceding) as sum_like_cnt_7d, max(sum(if_retweet...
Mysql
2022-03-02
0
307
首页
上一页
1
2
下一页
末页