|
DROP VIEWNameDROP VIEW — Removes an existing view from a databaseDROP VIEW name Inputs
Outputs
DescriptionDROP VIEW drops an existing view from the database. To execute this command you must be the owner of the view. NotesThe Postgres DROP TABLE statement also drops views. Refer to CREATE VIEW for information on how to create views. UsageThis command will remove the view called kinds: DROP VIEW kinds; CompatibilitySQL92SQL92 specifies some additional capabilities for DROP VIEW: DROP VIEW view { RESTRICT | CASCADE } Inputs
NotesAt present, to remove a referenced view from a Postgres database, you must drop it explicitly. |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |