SQL -Structured Query Language - SQL View - Delete View Tutorial
SQL View is an imaginary view table based on information retrieved using a select query.
Suppose a user wants to delete or drop the already existing view
The syntax to delete view is-
DROP VIEW view_name;
An example for view update is-
DROP VIEW usersalary_view;
Here it will delete an already existing view.