show-schemas.md 921 B


title: "SHOW SCHEMAS" description: "SHOW SCHEMAS returns a list of all schemas available in Materialize." menu: main:

parent: commands

SHOW SCHEMAS returns a list of all schemas available in Materialize.

Syntax

SHOW SCHEMAS [ FROM <database_name> ]

Details

Output format

SHOW SCHEMAS's output is a table with one column, name.

Examples

SHOW DATABASES;
   name
-----------
materialize
my_db
SHOW SCHEMAS FROM my_db
  name
--------
 public

Related pages

Option Description
FROM If specified, only show schemas from the specified database. Defaults to the current database. For available databases, see SHOW DATABASES.