show-databases.md 769 B


title: "SHOW DATABASES" description: "SHOW DATABASES returns a list of all databases in Materialize." menu: main:

parent: commands

SHOW DATABASES returns a list of all databases in Materialize.

Syntax

SHOW DATABASES
[LIKE <pattern> | WHERE <condition(s)>]

Details

Output format

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

Examples

CREATE DATABASE my_db;
SHOW DATABASES;
materialize
my_db
Option Description
LIKE <pattern> If specified, only show databases that match the pattern.
WHERE If specified, only show databases that match the condition(s).