English
Appearance
Drop a view with the given name. If IF EXISTS is present, the statement won't fail if the view does not exist.
IF EXISTS
DROP VIEW view_name [ IF EXISTS ];
view_name
DROP VIEW foo; DROP VIEW foo IF EXISTS;