从一个Oracle表插入另一个具有where条件的表

时间:2015-09-14 05:18:46

标签: oracle insert where

我想将一个表格中的数据插入另一个表格中,例如我有一张只有一列的表,这是时间键'我想将此时间键添加到另一个表中,其中timekey为null。我已经使用过此查询,但它无效。

insert into files_recon_3 (timekey) 
(select timekey from batch_DT)
where exists
(
select timekey from files_recon_3 where timekey is null
);

任何人都可以建议我如何做这项工作。感谢

0 个答案:

没有答案