Question

CREATE OR REPLACE VIEW high _ salary _ employees AS SELECT employee _ id, salary FROM employees WHERE salary > 50000; Which statement about the view high _ salary _ employees is true?

A The view stores a copy of the data in the database.
B The view must be recreated if the employees table is updated.
C The view allows real-time reflection of changes in the employees table.
D The view can be used to perform DML operations directly on employees.
E The view is static and cannot be updated.
Practice Next

Hey! Ask a query