71) Which SQL statement is used to retrieve view instances?
A) CREATE
B) DELETE
C) INSERT
D) SELECT
72) SQL views are not used ________.
A) to hide columns
B) to show results of computed columns
C) to hide complicated SQL statements
D) to enforce primary key constraints
73) If the values in an SQL view are changeable through the view itself, which SQL statement is
used to change the values?
A) CREATE
B) DELETE
C) INSERT
D) UPDATE
74) SQL views are always updatable when ________.
A) the view is based on a single table with no computed columns, and all non-null columns are
present in the view
B) the view is based on any number of tables, with or without computed columns, and the
INSTEAD OF trigger is defined for the view
C) the view is based on multiple tables, the update is being done on the most subordinate table,
and the rows of that table can be uniquely identified
D) Both A and B are correct