题解 | #计算商城中2021年每月的GMV#

计算商城中2021年每月的GMV

https://www.nowcoder.com/practice/5005cbf5308249eda1fbf666311753bf

select month,round(sum(total_amount)) as GMV from
    (select order_id,left(event_time,7) as month,
    total_amount from tb_order_overall where status != 2 and year(event_time) = 2021) t 
group by month having GMV > 100000 order by GMV ;

这个不难:

1.year=2021

2.ststus!=2

3.GMV=sum(total_amount) cnt没有用

全部评论

相关推荐

09-01 10:50
已编辑
东华大学 C++
PDD校招_内推:拼多多意向和开奖一般都比较晚,可能10月11月才出意向
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务