Drop View
You are looking at an older version of the documentation. The latest version is found here.
DROP VIEW
Usage
DROP VIEW views.<viewname>
Example
CREATE VIEW views.countryregion AS SELECT * FROM adventureworks.countryregion;
DROP VIEW views.countryregion ;;
DROP VIEW IF EXISTS
Usage
DROP VIEW IF EXISTS views.<viewname>
Example
DROP VIEW IF EXISTS views.countryregion ;;
No warning will appear if this procedure does not exist; the Server will quietly execute it.