ClickHouse/tests/queries/0_stateless/02206_clickhouse_local_use_database.reference

13 lines
196 B
Plaintext
Raw Normal View History

2022-02-06 15:11:18 +00:00
SHOW TABLES;
CREATE DATABASE test1;
CREATE TABLE test1.table1 (a Int32) ENGINE=Memory;
USE test1;
SHOW TABLES;
table1
CREATE DATABASE test2;
USE test2;
SHOW TABLES;
USE test1;
SHOW TABLES;
table1