Oracle Database SQL — Question 92

Which three statements are true about performing DML operations on a view with no INSTEAD OF triggers defined? (Choose three.)

Answer options

Correct answer: B, D, F

Explanation

Option B is correct because delete operations can generally be performed through views unless restricted by other conditions. Option D is also correct as views cannot add rows if they do not account for NOT NULL constraints in the underlying table. Option F is true since insert statements can be executed through a view, provided all necessary columns are addressed.