select date_format(event_time,'%Y-%m') as month, round(sum(total_amount),0) as GMV from tb_order_overall where status = 1 or status = 0 and year(event_time) = 2021 group by date_format(event_time,'%Y-%m') having GMV > 100000 order by GMV asc

注意限定条件,2021年,GMV升序排序,GMV>100000