mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
7 lines
263 B
MySQL
7 lines
263 B
MySQL
|
DROP TEMPORARY TABLE IF EXISTS temp_tab;
|
||
|
CREATE TEMPORARY TABLE temp_tab (number UInt64);
|
||
|
EXISTS TEMPORARY TABLE temp_tab;
|
||
|
SHOW CREATE TEMPORARY TABLE temp_tab;
|
||
|
SHOW TEMPORARY TABLES LIKE 'temp_tab';
|
||
|
DROP TEMPORARY TABLE temp_tab;
|
||
|
EXISTS TEMPORARY TABLE temp_tab;
|