mysql筆試題 -- 查詢每位會員在7月份的訂單數、訂單總額,並以訂單總額進行降序排列 select dimMemberID, -- 會員ID count(salesID) as 'order_num' ...