Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 491 Bytes

drop-view.rst

File metadata and controls

33 lines (20 loc) · 491 Bytes

psql

DROP VIEW

Drop one or more views.

Table of contents

Synopsis

DROP VIEW [ IF EXISTS ] view_name [ , ... ]

Description

Drop view drops one or more existing views.

If a view doesn't exist an error will be returned, unless IF EXISTS is used, in which case all matching existing views will be dropped.

ref-create-view