View the Exhibit and examine the structure of ORDERS and ORDER_ITEMS tables.
ORDER_ID is the primary key in the ORDERS table. It is also the foreign key in the ORDER_ITEMS table wherein
it is created with the ON DELETE CASCADE option.
Which DELETE statement would execute successfully?
A.
DELETE orders o, order_items I
WHERE o.order_id = i.order_id;
B.
DELETE
FROM orders
WHERE (SELECT order_id
FROM order_items);
C.
DELETE orders
WHERE order_total < 1000;
D.
DELETE order_id
FROM orders
WHERE order_total < 1000;
C?
Yes C. Same question in 1z0-047 with different answers order: https://equizzing.com/oracle/which-delete-statement-would-execute-successfully-3/ with right answer B (DELETE orders WHERE order_total < 1000;).
The correct answer should be C
The correct answer should be B and C.
Andrzej,
show me condition in B