码迷,mamicode.com
首页 > 数据库 > 详细

ORACLE创建临时事务表global temporary table 和 查询时临时表with tempName as (select ) select

时间:2019-03-29 19:07:03      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:保存   col   varchar   tor   问题   char   name   weight   cto   

创建临时事务表只是保存当前会话(session)用到的数据,数据只在事务或会话期间存在,可规避多线程调用数据冲突问题 
--
Create table create global temporary table TEM_FI_COURSE_CONFIG ( lgart VARCHAR2(20), komok VARCHAR2(20), sign VARCHAR2(20), lgart1 VARCHAR2(20), sign1 VARCHAR2(20), ktosl VARCHAR2(20), bschs VARCHAR2(20), bschh VARCHAR2(20), konts VARCHAR2(20), konth VARCHAR2(20), neg_postng VARCHAR2(20), col01 VARCHAR2(20), neg_postng_deb VARCHAR2(20), symko VARCHAR2(20) ) on commit delete rows;

查询时临时表with tempName as (select ) select

 with as 相当于虚拟视图。

  with as短语,也叫做子查询部分(subquery factoring),可以让你做很多事情,定义一个sql片断,该sql片断会被整个sql语句所用到

  

with tempName as (select ....)
select ...

--针对一个别名
with tmp as (select * from tb_name)

--针对多个别名
with
   tmp as (select * from tb_name),
   tmp2 as (select * from tb_name2),
   tmp3 as (select * from tb_name3),
   …

 

 

   

 

ORACLE创建临时事务表global temporary table 和 查询时临时表with tempName as (select ) select

标签:保存   col   varchar   tor   问题   char   name   weight   cto   

原文地址:https://www.cnblogs.com/gongshun/p/10623186.html

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