SQL Reference Contents
drop view - removes a view from Postgres
drop view view_name
This command drops an existing view from the Postgres system.
To execute this command you must be the owner of the view.
/*
* this command will remove the "myview" view
*/
drop view myview
create view(l)
, drop rule(l)
,
Table of Contents