软讯网络 > 冲浪宝典 > 网络资源 > 临时表的创建
【标 题】:临时表的创建
【关键字】:
【来 源】:http://www.cublog.cn/u/20078/showart.php?id=198605
临时表的创建
create global temporary table table_name on commit preserve rows /on commit delete rows as select * from test;
on commit preserve rows 表示在该session的提交后维持数据行,而重开session找不到数据行
on commit delete rows 表示在该session的提交后即删除数据行。
【相关文章】
没有相关文章