解1. WITH t1 AS (SELECT order_num ,SUM(item_price*quantity) AS total_ordered FROM OrderItems OI GROUP BY order_num ) SELEC...