2021-04-23 12:18:23 +00:00
|
|
|
DROP TABLE IF EXISTS t1;
|
|
|
|
DROP TABLE IF EXISTS t2;
|
|
|
|
DROP TABLE IF EXISTS t3;
|
|
|
|
|
|
|
|
CREATE TABLE t1
|
|
|
|
(
|
|
|
|
`n` Int8
|
|
|
|
)
|
|
|
|
ENGINE = Memory
|
|
|
|
COMMENT 'this is a temtorary table';
|
|
|
|
|
|
|
|
CREATE TABLE t2
|
|
|
|
(
|
|
|
|
`n` Int8
|
|
|
|
)
|
|
|
|
ENGINE = MergeTree
|
|
|
|
ORDER BY n
|
|
|
|
COMMENT 'this is a MergeTree table';
|
|
|
|
|
|
|
|
CREATE TABLE t3
|
|
|
|
(
|
|
|
|
`n` Int8
|
|
|
|
)
|
|
|
|
ENGINE = Log
|
|
|
|
COMMENT 'this is a Log table';
|
|
|
|
|
|
|
|
SELECT
|
|
|
|
name,
|
|
|
|
comment
|
|
|
|
FROM system.tables
|
2021-04-25 07:58:40 +00:00
|
|
|
WHERE name IN ('t1', 't2', 't3') order by name;
|
2021-04-23 12:18:23 +00:00
|
|
|
|
2021-05-03 16:19:48 +00:00
|
|
|
SHOW CREATE TABLE t1;
|
|
|
|
|
2021-04-23 12:18:23 +00:00
|
|
|
DROP TABLE t1;
|
|
|
|
DROP TABLE t2;
|
|
|
|
DROP TABLE t3;
|