ClickHouse/dbms/tests/queries/0_stateless/00564_show_tables_with_temporary.sql
2018-02-03 16:00:18 +08:00

4 lines
159 B
SQL

DROP TEMPORARY TABLE IF EXISTS temp_tab;
CREATE TEMPORARY TABLE temp_tab (number UInt64);
SHOW TEMPORARY TABLES LIKE 'temp_tab';
DROP TEMPORARY TABLE temp_tab;