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

计算商城中2021年每月的GMV

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

-- GMV:已经付款订单金额和未付款订单金额之和(不包含已退款订单)
select
    date_format (event_time, '%Y-%m') as month,
    sum(total_amount) as GMV
from
    tb_order_overall
where
    status <> 2
    -- 该场景下:year(event_time),left(event_time, 4),substring(event_time, 1, 4)效果等价
    -- and year(event_time)= '2021'
    -- and left(event_time, 4)= '2021'
    and substring(event_time, 1, 4) = '2021'
group by
    month
having
    sum(total_amount) > 100000
order by
    GMV

SQL大厂面试题 文章被收录于专栏

牛客网sql大厂面试题题解~

全部评论

相关推荐

11-09 11:01
济南大学 Java
Java抽象带篮子:外卖项目真得美化一下,可以看看我的详细的外卖话术帖子
点赞 评论 收藏
分享
躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务