DROP_VIEW
remove a view
- Provided by: postgresql-client-18 (Version: 18.3-1)
- Source: postgresql-18
- Report a bug
remove a view
DROP VIEW [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]
DROP VIEW drops an existing view. To execute this command you must be the owner of the view.
IF EXISTS
name
CASCADE
RESTRICT
This command will remove the view called kinds:
DROP VIEW kinds;
This command conforms to the SQL standard, except that the standard only allows one view to be dropped per command, and apart from the IF EXISTS option, which is a PostgreSQL extension.
ALTER VIEW (ALTER_VIEW(7)), CREATE VIEW (CREATE_VIEW(7))