ClickHouse/dbms/tests/queries/0_stateless/00080_show_tables.sql
2014-11-22 23:56:14 +03:00

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;