DROP VIEWSection: SQL Commands (7)Updated: 2003-11-02 |
DROP VIEWSection: SQL Commands (7)Updated: 2003-11-02 |
DROP VIEW name [, ...] [ CASCADE | RESTRICT ]
DROP VIEW drops an existing view. To execute this command you must be the owner of the view.
This command will remove the view called kinds:
DROP VIEW kinds;
This command conforms to the SQL standard.