我想将一个表格中的数据插入另一个表格中,例如我有一张只有一列的表,这是时间键'我想将此时间键添加到另一个表中,其中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
);
任何人都可以建议我如何做这项工作。感谢