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