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;
转载于:https://www.cnblogs.com/6324/p/6275037.html