# How to list tables from a database in ClickHouse

Source: https://www.bytebase.com/reference/clickhouse/how-to/how-to-list-tables-from-a-database-clickhouse/

---

You can run the following command to show all the tables in an existing database:

```sql
SHOW TABLES FROM db_how_to;
```