码迷,mamicode.com
首页 > 其他好文 > 详细

临时表

时间:2014-12-11 15:41:30      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:io   ar   on   数据   as   table   rom   user   select   

会话级临时表

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;

临时表

标签:io   ar   on   数据   as   table   rom   user   select   

原文地址:http://www.cnblogs.com/wangyameng/p/4157548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!