PostgreSQL – Drop Schema
You can drop a schema and all of its objects using the DROP SCHEMA statement. This statement should be executed with caution because it permanently deletes the schema and all the objects within it. Here’s the basic syntax to drop a schema: DROP SCHEMA [IF EXISTS] schema_name [CASCADE | RESTRICT]; where Here are some examples:…