On this page
Warning:
As of October 30, 2020, CockroachDB v19.1 is no longer supported. For more details, refer to the Release Support Policy.
The SHOW SCHEMAS
statement lists all schemas in a database.
Required privileges
No privileges are required to list the schemas in a database.
Synopsis
Parameters
Parameter | Description |
---|---|
name |
The name of the database for which to show schemas. When omitted, the schemas in the current database are listed. |
Example
> SET DATABASE = bank;
> SHOW SCHEMAS;
+--------------------+
| schema_name |
+--------------------+
| crdb_internal |
| information_schema |
| pg_catalog |
| public |
+--------------------+
(4 rows)