在Oracle中,如何将查询出的数据存入临时表中

createglobaltemporarytableabcdasselecta.a1,b.b2froma,bwherea.id=b.id这个语句执行后表中没内容。crea... create global temporary table abcd as select a.a1,b.b2 from a,b where a.id=b.id 这个语句执行后表中没内容。
create global temporary table abcd as select a.a1,b.b2 from a,b where a.id=b.id on commit delete rows;这个语句在Oracle 10g中执行时会出现“命令未正确结束”的错误,希望高手指点。如果正确,我会多加15分,因为我就这么多了。
是在sql*plus中
展开
 我来答
badkano
推荐于2017-09-03 · 知道合伙人体育行家
badkano
知道合伙人体育行家
采纳数:144777 获赞数:885358
团长

向TA提问 私信TA
展开全部

比如临时表叫temp,你要查询的语句为select * from 表名 where id=1。

如果temp表存在:

insert into temp select * from 表名 where id=1;
commit;

如果temp表不存在

create table temp as insert into temp select * from 表名 where id=1;

注意:使用insert语句时一定要commit,否则写不进数据库中。

tjslhj_1982
2010-05-11
知道答主
回答量:19
采纳率:0%
帮助的人:0
展开全部
temporary table :临时表,有两种方法
1、on commit delete rows;当COMMIT的时候删除数据
2、on commit preserve rows;当COMMIT的时候保留数据
当不写的时候默认为1。
所以你的第一条语名自然没有数据。但你如果在程序中使用的话此临时表的数据的生命周期就是本程序开始至结束。
第二条语句要变为:create global temporary table abcd on commit delete rows as select a.a1,b.b2 from a,b where a.id=b.id ;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
105780520
2010-05-11 · TA获得超过662个赞
知道小有建树答主
回答量:354
采纳率:0%
帮助的人:277万
展开全部
临时table在commit后都看不到数据吧。
create动作又是那种默认commit的。
所以, 在后面的insert 动作后,应该是可以看到。

create global temporary table abcd on commit delete rows as select a.a1,b.b2 from a,b where a.id=b.id
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式