SHOW: Displaying Information About Databases and Tables
This section describes the basic syntax and usage of the SQL statement for displaying information about databases and tables in ClickHouse.
Basic Syntax
show databases
show tables
Example
-- Query database information. show databases; ┌─name────┐ │ default │ │ system │ │ test │ └───────┘ -- Query table information. show tables; ┌─name──┐ │ t1 │ │ test │ │ test2 │ │ test5 │ └─────┘
Last Article: DROP: Deleting a Table
Next Article: Migrating ClickHouse Data
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.