4 DROP VIEW — remove a view
8 DROP VIEW [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]
12 DROP VIEW drops an existing view. To execute this command you must be
13 the owner of the view.
18 Do not throw an error if the view does not exist. A notice is
22 The name (optionally schema-qualified) of the view to remove.
25 Automatically drop objects that depend on the view (such as
26 other views), and in turn all objects that depend on those
27 objects (see Section 5.15).
30 Refuse to drop the view if any objects depend on it. This is the
35 This command will remove the view called kinds:
40 This command conforms to the SQL standard, except that the standard
41 only allows one view to be dropped per command, and apart from the IF
42 EXISTS option, which is a PostgreSQL extension.
46 ALTER VIEW, CREATE VIEW