题解 | #计算商城中2021年每月的GMV#
计算商城中2021年每月的GMV
http://www.nowcoder.com/practice/5005cbf5308249eda1fbf666311753bf
select month, GMV from ( select DATE_FORMAT(event_time, '%Y-%m') as month, round(sum(total_amount), 0) as GMV from tb_order_overall where (year(event_time) = 2021 and status = 1 ) or (year(event_time) = 2021 and status = 0) group by DATE_FORMAT(event_time, '%Y-%m') order by GMV ASC)table1 where GMV > 100000