READ Free Dumps For Oracle- 1z1-051
Question ID 4850 | View the Exhibit and examine the structure of ORDERS and CUSTOMERS tables. There is only one customer with the cus_last_name column having value Roberts. Which INSERT statement should be used to add a row into the ORDERS table for the customer whose CUST_LAST_NAME is Roberts and CREDIT_LIMIT is 600? |
Option A | |
Option B | B. INSERT INTO orders (order_id.order_date.order_mode. (SELECT customer id |
Option C | C. INSERT INTO(SELECT o.order_id. o.order_date.o.order_modex.customer_id. o.ordertotal |
Option D | D. INSERT INTO orders (order_id.order_date.order_mode. (SELECT customer_id |
Correct Answer | A |
Question ID 4851 | View the Exhibit and examine the structure of the SALES, CUSTOMERS, |
Option A | A. The NEW_SALES table would not get created because the DEFAULT value cannot be specified in the column definition. |
Option B | B. The NEW SALES table would set created and all the NOT NULL constraints defined on the specified columns would be passed to the new table. |
Option C | C. The NEW_SALES table would not set created because the column names in the CREATE TABLE command and the SELECT clause do not match. |
Option D | D. The NEW SALES table would set created and all the FOREIGN KEY constraints defined on the specified columns would be passed to the new table. |
Correct Answer | B |