Oracle Database 12c: SQL Fundamentals — Question 19

Which two statements are true regarding views? (Choose two.)

Answer options

Correct answer: C, D

Explanation

Option C is correct because a view that includes all NOT NULL columns from the base table allows DML operations to be performed. Option D is also correct since views created with the ROWNUM pseudo column are not updatable due to the nature of how ROWNUM functions. Options A and B are incorrect as they misrepresent the capabilities and limitations of views in SQL.