Skip to main content
Skip table of contents

Drop View

DROP VIEW

Usage

SQL
DROP VIEW views.<viewname>

Example

SQL
CREATE VIEW views.countryregion AS SELECT * FROM adventureworks.countryregion;
DROP VIEW views.countryregion ;;

DROP VIEW IF EXISTS

Usage

SQL
DROP VIEW IF EXISTS views.<viewname>

Example

SQL
DROP VIEW IF EXISTS views.countryregion ;;

No warning will appear if this procedure does not exist; the Server will quietly execute it.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.