Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
DROP SCHEMA
Prev UpSQL CommandsHome Next

DROP SCHEMA

DROP SCHEMA — remove a schema

Synopsis

DROP SCHEMA [ IF EXISTS ]name [, ...] [ CASCADE | RESTRICT ]

Description

DROP SCHEMA removes schemas from the database.

A schema can only be dropped by its owner or a superuser. Note that the owner can drop the schema (and thereby all contained objects) even if they do not own some of the objects within the schema.

Parameters

IF EXISTS

Do not throw an error if the schema does not exist. A notice is issued in this case.

name

The name of a schema.

CASCADE

Automatically drop objects (tables, functions, etc.) that are contained in the schema, and in turn all objects that depend on those objects (seeSection 5.13).

RESTRICT

Refuse to drop the schema if it contains any objects. This is the default.

Notes

Using theCASCADE option might make the command remove objects in other schemas besides the one(s) named.

Examples

To remove schemamystuff from the database, along with everything it contains:

DROP SCHEMA mystuff CASCADE;

Compatibility

DROP SCHEMA is fully conforming with the SQL standard, except that the standard only allows one schema to be dropped per command, and apart from theIF EXISTS option, which is aPostgreSQL extension.


Prev Up Next
DROP RULE Home DROP SEQUENCE
epubpdf
Go to PostgreSQL 9.6
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp