mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
11 lines
267 B
SQL
11 lines
267 B
SQL
DROP DATABASE IF EXISTS test_show_tables;
|
|
|
|
CREATE DATABASE test_show_tables;
|
|
|
|
CREATE TABLE test_show_tables.A (A UInt8) ENGINE = TinyLog;
|
|
CREATE TABLE test_show_tables.B (A UInt8) ENGINE = TinyLog;
|
|
|
|
SHOW TABLES from test_show_tables;
|
|
|
|
DROP DATABASE test_show_tables;
|