oracle中,存储过程建的临时表
临时表怎么去插入selects.*fromti_b_synchinfo_focsswheres.state='8'ands.update_time<update_time...
临时表怎么去插入
select s.* from ti_b_synchinfo_focs s
where s.state='8' and s.update_time < update_time
这个 展开
select s.* from ti_b_synchinfo_focs s
where s.state='8' and s.update_time < update_time
这个 展开
1个回答
展开全部
create table tmp_临时表 as select * from 表名 ;// 这边是创建临时表再将数据添加到临时表
insert into tmp_临时表 select * from 表名 ; // 和上面的一样,但是这个是临时表已经存在新增数据
insert into tmp_临时表 select * from 表名 ; // 和上面的一样,但是这个是临时表已经存在新增数据
更多追问追答
追问
如果我是在存储过程中建立临时表呢。
我在存储过程中是利用动态建立的,execute immediate ‘CREATE GLOBAL TEMPORARY TABLE ti_b_synchinfo_focs_temp AS SELECT * FROM ti_b_synchinfo_focs ON COMMIT PRESERVE ROWS‘
怎么去调用临时表插入上面那条语句呢
追答
insert into ti_b_synchinfo_focs_temp select s.* from ti_b_synchinfo_focs s
where s.state='8' and s.update_time < update_time
这样就直接可以,但是这样你要保证他们的字段必须一致(类型)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询