临时表

会话级临时表

create global temporary table tmp1

on commit perserve rows

as select * from emp;

会话结束时表内的数据清空,表结构还存在。

事务级临时表

create global temporary table tmp2

as select * from emp;

事务结束后,表内数据清空。

查看临时表:

select table_name,temporary,duration from user_tables;

posted @   达尔萌  阅读(159)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示