DROP SCHEMA
DROP SCHEMA — удалить схему
Синтаксис
DROP SCHEMA [ IF EXISTS ] имя [, ...] [ CASCADE | RESTRICT ]Описание
DROP SCHEMA удаляет схемы из базы данных.
Схему может удалить только её владелец или суперпользователь. Заметьте, что владелец может удалить схему (вместе со всеми содержащимися в ней объектами), даже если он не владеет некоторыми объектами в своей схеме.
Параметры
IF EXISTSНе считать ошибкой, если схема не существует. В этом случае будет выдано замечание.
имяИмя схемы.
CASCADEАвтоматически удалять объекты, содержащиеся в этой схеме (таблицы, функции и т. д.), и, в свою очередь, все зависящие от них объекты (см. Раздел 5.15).
RESTRICTОтказать в удалении схемы, если она содержит какие-либо объекты. Это поведение по умолчанию.
Примечания
С указанием CASCADE эта команда может удалить объекты не только в данной схеме, но и в других.
Примеры
Удаление схемы mystuff из базы данных вместе со всем, что в ней содержится:
DROP SCHEMA mystuff CASCADE;
Совместимость
Команда DROP SCHEMA полностью соответствует стандарту SQL, но возможность удалять в одной команде несколько схем и указание IF EXISTS являются расширениями Postgres Pro.
См. также
ALTER SCHEMA, CREATE SCHEMADROP 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 EXISTSDo not throw an error if the schema does not exist. A notice is issued in this case.
nameThe name of a schema.
CASCADEAutomatically drop objects (tables, functions, etc.) that are contained in the schema, and in turn all objects that depend on those objects (see Section 5.15).
RESTRICTRefuse to drop the schema if it contains any objects. This is the default.
Notes
Using the CASCADE option might make the command remove objects in other schemas besides the one(s) named.
Examples
To remove schema mystuff 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 the IF EXISTS option, which is a Postgres Pro extension.