Help Center/
GaussDB(DWS)/
SQL Syntax Reference/
SQL Syntax Reference (8.1.3.x)/
DDL Syntax/
DROP SCHEMA
Updated on 2024-09-03 GMT+08:00
DROP SCHEMA
Function
DROP SCHEMA deletes a schema in a database.
Precautions
- Only the owner of a schema or a user granted with the DROP permission for the schema or a system administrator has the permission to execute the Drop SCHEMA statement.
- Do not delete the schemas with the beginning of pg_temp or pg_toast_temp. They are internal system schemas, and deleting them may cause unexpected errors.
- A user cannot delete the schema in use. To delete the schema in use, switch to another schema.
Syntax
1
|
DROP SCHEMA [ IF EXISTS ] schema_name [, ...] [ CASCADE | RESTRICT ]; |
Parameter Description
- IF EXISTS
Sends a notice instead of an error if the specified schema does not exist.
- schema_name
Specifies the name of a schema.
Value range: An existing schema name.
- CASCADE | RESTRICT
- CASCADE: automatically deletes all objects that are contained in the schema to be deleted.
- RESTRICT: refuses to delete the schema that contains any objects. This is the default.
Example
Delete the ds_new schema:
1
|
DROP SCHEMA ds_new; |
Links
Parent topic: DDL Syntax
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot