ClickHouse/dbms/tests/queries/0_stateless/00492_drop_temporary_table.sql

9 lines
293 B
MySQL
Raw Normal View History

2017-08-15 12:54:12 +00:00
drop table if exists temp_tab;
create temporary table temp_tab (number UInt64);
insert into temp_tab select number from system.numbers limit 1;
select number from temp_tab;
drop table temp_tab;
create temporary table temp_tab (number UInt64);
select number from temp_tab;
drop table temp_tab;