This section describes the basic syntax and usage of the SQL statement for displaying information about databases and tables in ClickHouse.
show databases
show tables
-- Query database information. show databases; ┌─name────┐ │ default │ │ system │ │ test │ └───────┘ -- Query table information. show tables; ┌─name──┐ │ t1 │ │ test │ │ test2 │ │ test5 │ └─────┘