For each order, return only those whose total_amount is stri…
For each order, return only those whose total_amount is strictly greater than that customer’s average order amount. Output: order_id, customer_id, total_amount. Orders( order_id NUMBER, customer_id NUMBER, order_date DATE, total_amount NUMBER)
Read Details