Oracle Database SQL 12c 1z0-071 Exam Practice Test 1
© examsiri.com
Question : 3 of 50
Marks:
+1,
-0
Evaluate the following statement.
INSERT ALL
 WHEN Order_total < 10000 THEN
  INTO small_orders
 WHEN order_total > 10000 AND order_total < 20000 THEN
  INTO medium_orders
 WHEN order_total > 200000 AND order_total < 20000 THEN
 INTO large_orders
 SELECT order_id, order_total, customer_id
 FROM orders;
Which statement is true regarding the evaluation of rows returned by the subquery in the INSERT statement?
Go to Question: