Multiple Choice
Which statement is true about the view created with the following command?
CREATE OR REPLACE VIEW inventory
AS SELECT isbn,title,retail price
FROM books;
A) The command creates a complex view.
B) DML operations are not allowed on the data displayed by the view.
C) A database object named INVENTORY may already exist.
D) all of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q93: A simple view is based upon a
Q94: _ analysis could be used to find
Q95: A(n)<u>complex</u> view can contain data from more
Q96: Any DML operation can be performed on
Q97: Which type of view is created with
Q99: Which type of view is created by
Q100: The <u>WITHOUT UPDATE</u> keywords prevent DML operations
Q101: Rows cannot be added to a simple
Q102: If a view was created with the
Q103: Which statement is true about the view