<a id="ksqldb-reference-show-tables"></a>

# SHOW TABLES statement in ksqlDB for Confluent Platform

## Synopsis

```sql
SHOW | LIST TABLES [EXTENDED];
```

## Description

List the defined tables.

## Example

```sql
-- See the list of tables currently registered:
LIST TABLES;

-- See extended information about currently registered tables:
SHOW TABLES EXTENDED;
```
