Multiple Choice
Which statement is true about the view created with the following command?
CREATE OR REPLACE VIEW outstanding
AS SELECT customer#,order#,orderdate,shipdate
FROM orders
WHERE shipdate IS NULL
WITH READ ONLY;
A) The order# of an order cannot be changed through the view.
B) The shipping date of an order cannot be changed through the view.
C) No DML operations are permitted through the view.
D) all of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q98: Which statement is true about the view
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
Q104: The WITH READ ONLY option can be
Q105: An inline view is used to create
Q106: Rows cannot be deleted if the complex
Q107: A(n)_ table is a table that does
Q108: A(n)_ view can contain grouped data.