Oracle Database SQL 12c 1z0-071 Exam Practice Test 1
© examsiri.com
Question : 47 of 50
Marks:
+1,
-0
View the Exhibit and examine the structure of the ORDER_ITEMS table
You want to display the PRODUCT_ID of the product that has the highest UNIT_PRICE per ORDER_I
Examine the following SQL statement:
SELECT order_id, product_id, unit_price
FROM order_items
WHERE unit_price =
  (SELECT MAX(unit_price)
FROM order_items
GROUP BY order_id); You want to display the PRODUCT_ID of the product that has the highest UNIT_PRICE per ORDER_I
Go to Question: