SQL Reference Contents

NAME

drop view - removes a view from Postgres

SYNOPSIS

drop view view_name

DESCRIPTION

This command drops an existing view from the Postgres system. To execute this command you must be the owner of the view.

EXAMPLE

/*
* this command will remove the "myview" view
*/
drop view myview

SEE ALSO

create view(l) , drop rule(l) ,


Table of Contents