create global temporary table ts(co char(1)) on commit preserve rows;
insert into ts values(1);
select * from ts;
truncate table ts;
create global temporary table tc(co char(1)) on commit delete rows;
insert into tc values(1);
--commit;
select * from tc;
3720

被折叠的 条评论
为什么被折叠?



