Which Of The Following Statement Can Be Used To Drop A View In #427
Which of the following statement can be used to drop a view in SQL?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Data Types, Views and Injection - SQL Views - Quiz No.1.
Which of the following statement can be used to drop a view in SQL?
DELETE VIEW view_name FROM Table_name;
DROP VIEW view_name FROM Table_name;
DROP VIEW view_name;
DELETE VIEW view_name;