select order_num from OrderItems 
group by order_num having sum(quantity) >=100
order by order_num
#返回订单数量总和不小于100的所有订单的订单号#