Which SQL statement would you use to remove a view called EMP_DEPT_VU from your schema?
Answer options
A
DROP VIEW emp_dept_vu;
B
DELETE VIEW emp_dept_vu;
C
REMOVE VIEW emp_dept_vu;
D
ALTER VIEW emp_dept_vu DROP;
Correct answer: DROP VIEW emp_dept_vu;
Explanation
DROP VIEW is the correct SQL syntax to remove a view.