SELECT MAX(unit_price*quantity) “Maximum Order" FROM order_items;
SELECT MAX(unit_price*quantity) “Maximum Order” FROM order_items GROUP BY order_id;