On this page
DROP VIEW
Removes a view from the system.
Syntax
DROP VIEW [ IF EXISTS ] <name>
Parameters
<name>
The name of the view to drop.
Examples
-- Drop a view
DROP VIEW latest_user_status;
-- Drop a view if it exists
DROP VIEW IF EXISTS highest_user_scores;On this page