mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
7 lines
263 B
SQL
7 lines
263 B
SQL
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; |