select date_format(event_time,'%Y-%m') as month,sum(total_amount)GMV from tb_order_overall where year(event_time)=2021 and status!=2 group by month having GMV>100000 order by GMV;

本题主要考察了时间日期函数的使用,求和函数的使用,以及where,having和排序函数的使用