This question is based on successful execution of the following command: CREATE VIEW changename AS SELECT customer#,

Question:

This question is based on successful execution of the following command:

CREATE VIEW changename

AS SELECT customer#, lastname, firstname

FROM customers

WITH CHECK OPTION;

Assume that the only constraint on the CUSTOMERS table is a PRIMARY KEY constraint.


The INSERT command can’t be used with the CHANGENAME view because:

a. A key-preserved table isn’t included in the view.

b. The view was created with the WITH CHECK OPTION constraint.

c. The inserted record couldn’t be accessed by the view.

d. None of the above—an INSERT command can be used on the table as long as the PRIMARY KEY constraint isn’t violated.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Oracle 12c SQL

ISBN: 978-1305251038

3rd edition

Authors: Joan Casteel

Question Posted: