时间:2021-07-01 10:21:17 帮助过:13人阅读
在oracle中临时表可分为会话级临时表和事务级别临时表。
临时表的作用:对于庞大的数据我们只要查询其中一小部分结果集这样我们可以借助临时表。
1.会话级别临时表
会话级临时表是指临时表中的数据只在会话生命周期之中存在,当用户退出会话结束的时候,自动Oracle清除临时表中数据。
create global temporary table xx(col_name datatype) on commit preserve rows;
2.事务级别的临时表
create global temporary table xx(col_name datatype) on commit delete rows;
这时当你执行了commit和rollback操作的话,再次查询表内的数据就查不到了。
oracle临时表
标签:oba 结构 bsp creat 清除 col ora glob let