题解 | #国庆期间近7日日均取消订单量#

国庆期间近7日日均取消订单量

http://www.nowcoder.com/practice/2b330aa6cc994ec2a988704a078a0703

写一个不用窗口函数的题解~

第一步,计算2021年10月1号到10月3号近七天的完成订单总数和取消订单总数

select distinct date(order_time) dt,
(select sum(if(start_time is null,0,1))
from tb_get_car_order
where timestampdiff(day,date(order_time),dt) between 0 and 6
)  finish_num,
(select sum(if(start_time is null,1,0))
from tb_get_car_order
where timestampdiff(day,date(order_time),dt) between 0 and 6
)  cancel_num
from
tb_get_car_order t1
where
date(order_time) between '2021-10-01' and '2021-10-03'

得到下表

alt

最后计算7天的日平均值得到最终的sql

select dt,round(finish_num/7,2) finish_num_7d,
round(cancel_num/7,2) cancel_num_7d
from
(select distinct date(order_time) dt,
(select sum(if(start_time is null,0,1)) 
from tb_get_car_order
where timestampdiff(day,date(order_time),dt) between 0 and 6
)  finish_num,
(select sum(if(start_time is null,1,0)) 
from tb_get_car_order
where timestampdiff(day,date(order_time),dt) between 0 and 6
)  cancel_num
from 
tb_get_car_order t1
where 
date(order_time) between '2021-10-01' and '2021-10-03')t2

alt

全部评论
我一开始也这样,两个对照着,其实是因为时间格式统一,相减时产生的天数就会有差异,这是我的理解。 在本题中,如果在timestampdiff中用的两个都是date()日期格式相减就没问题,没用日期格式算出来数量就是错的
2 回复 分享
发布于 2022-08-12 16:57
该牛油正在参与牛客写题解薅羊毛的活动,牛币,周边,京东卡超多奖品放送,活动进入倒计时!快来捡漏啦https://www.nowcoder.com/discuss/888949?source_id=profile_create_nctrack&channel=-1
点赞 回复 分享
发布于 2022-04-27 12:14
请问有人知道这里的dt(line7和line11)为什么换成t1.order_time得到的结果就是错的? 另外在q18里同样方法用t1.event_time是对的,用dt就是错的,求解惑
点赞 回复 分享
发布于 2022-05-21 20:12

相关推荐

2024-12-27 13:08
华南理工大学 Java
蝴蝶飞出了潜水钟丿:多看一眼就会💥
点赞 评论 收藏
分享
评论
18
3
分享

创作者周榜

更多
牛客网
牛客企业服务