Question:Which of the following SQL statements should be used to remove a view called EMP_DEPT_VU from the schema?
A DROP emp_dept_vu;
B DELETE emp_dept_vu;
C REMOVE emp_dept_vu;
D DROP VIEW emp_dept_vu;
E DELETE VIEW emp_dept_vu;
F REMOVE VIEW emp_dept_vu;
+ AnswerD
+ Report