create global temporary table testtemp( uuid varchar(20), name varchar(50) )ON COMMIT DELETE ROWS; insert into testtemp values('1','233'); select *from testtemp; drop table testtemp;
create global temporary table testtemp( uuid varchar(20), name varchar(50) )ON COMMIT DELETE ROWS; insert into testtemp values('1','233'); select *from testtemp; drop table testtemp;