题解 | #计算商城中2021年每月的GMV#
计算商城中2021年每月的GMV
https://www.nowcoder.com/practice/5005cbf5308249eda1fbf666311753bf
SELECT DATE_FORMAT(event_time,"%Y-%m") as month, sum(case status when '0' then total_amount when '1' then total_amount else 0 END) as GMV FROM tb_order_overall WHERE year(event_time)='2021' GROUP BY month HAVING GMV > 100000 ORDER BY GMV;
问题:请计算商城中2021年每月的GMV,输出GMV大于10w的每月GMV,值保留到整数。
注:GMV为已付款订单和未付款订单两者之和。结果按GMV升序排序。
输出2个要点
1、2021年每月 需要通过转化为:DATE_FORMAT(event_time,"%Y-%m") as month
2、GMV:
使用case when 条件语句去计算,筛选出符合status为0/1的那些数量金额并且相加,case status when ‘1’then ‘total_amount' case '0' then 'total_amount' else 0 end) as GMV
3、GMV大于10w:having GMV >100000
4、升序排序:order by GMV
5、时间戳①年——2021年:year(event_time) = '2021'
6、时间戳②月——DATE_FORMAT(event_time,"%Y-%m") as month