Back to Trino

SHOW SCHEMAS

docs/src/main/sphinx/sql/show-schemas.md

480420 B
Original Source

SHOW SCHEMAS

Synopsis

text
SHOW SCHEMAS [ FROM catalog ] [ LIKE pattern ]

Description

List the schemas in catalog or in the current catalog.

{ref}Specify a pattern <like-operator> in the optional LIKE clause to filter the results to the desired subset. For example, the following query allows you to find schemas that have 3 as the third character:

SHOW SCHEMAS FROM tpch LIKE '__3%'