> ## Documentation Index
> Fetch the complete documentation index at: https://docs.peaka.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SHOW CATALOGS

## Synopsis

```sql theme={null}
SHOW CATALOGS [ LIKE pattern ]
```

## Description

List the available catalogs.

[Specify a pattern](/sql/functions/comparison#pattern-comparison-like) in the optional `LIKE` clause to
filter the results to the desired subset. For example, the following query
allows you to find catalogs that begin with `t`:

```sql theme={null}
SHOW CATALOGS LIKE 't%'
```
