标签:table nbsp delete llb oracle 结束 into 退出 ref
在oracle中临时表可分为会话级临时表和事务级别临时表。
临时表的作用:对于庞大的数据我们只要查询其中一小部分结果集这样我们可以借助临时表。
1.会话级别临时表
会话级临时表是指临时表中的数据只在会话生命周期之中存在,当用户退出会话结束的时候,Oracle自动清除临时表中数据。
create global temporary table aaa(id number) on commit oreserve rows;
insert into aaa values(100);
select * from aaa;
这是当你在打开另一个会话窗口的时候再次查询,表内的数据就查询不到了。
2.事务级别的临时表
create global temporary table bbb(id number) on commit delete rows;
insert into bbb values(200);
select * from bbb;
这时当你执行了commit和rollback操作的话,再次查询表内的数据就查不到了。
标签:table nbsp delete llb oracle 结束 into 退出 ref
原文地址:http://www.cnblogs.com/wjmbk/p/7912007.html