如何将一张备份表的数据插入到另一张表
发布网友
发布时间:2022-05-05 07:23
我来回答
共3个回答
热心网友
时间:2023-10-15 03:44
完全COPY另一张表
create table aa as select * from and05
将结果集的数据插入到某表中
insert into and07(cnd215,cnd224,cnd222,cnd225) select z.cnd215,sysdate,
(select sum(cnd037) from and02 a where a.cnd032='20002901' and a.cnd215=z.cnd215) A,
(select sum(cnd037) from and02 a where a.cnd032='20002902' and a.cnd215=z.cnd215) B
from and02 z where trunc(cne007,'mm') = trunc(sysdate,'mm') group by cnd215
针对“完全COPY另一张表”的演练
truncate table aa
insert into aa select * from and05;
用另一个表的结果去更新某张表
update and02 a set a.and07id=(select b.and07id from and07 b where a.cnd215=b.cnd215 and trunc(cnd224,'mm')=trunc(sysdate,'mm'));
希望对你能有所帮助。
热心网友
时间:2023-10-15 03:45
你好,下面这个是oracle的语法,其他数据库估计大同小异
insert into A as select * from Abak;
如果不行的话把as去掉试试,好久没用,记不太清楚了
希望能解决你的问题。
热心网友
时间:2023-10-15 03:45
假设你有3个字段,主键a
select a,b,c from abak
union all
select a,b,c
from abak as t
left join 目标表 as p on t.a=p.a
where p.a is null
热心网友
时间:2023-10-15 03:44
完全COPY另一张表
create table aa as select * from and05
将结果集的数据插入到某表中
insert into and07(cnd215,cnd224,cnd222,cnd225) select z.cnd215,sysdate,
(select sum(cnd037) from and02 a where a.cnd032='20002901' and a.cnd215=z.cnd215) A,
(select sum(cnd037) from and02 a where a.cnd032='20002902' and a.cnd215=z.cnd215) B
from and02 z where trunc(cne007,'mm') = trunc(sysdate,'mm') group by cnd215
针对“完全COPY另一张表”的演练
truncate table aa
insert into aa select * from and05;
用另一个表的结果去更新某张表
update and02 a set a.and07id=(select b.and07id from and07 b where a.cnd215=b.cnd215 and trunc(cnd224,'mm')=trunc(sysdate,'mm'));
希望对你能有所帮助。
热心网友
时间:2023-10-15 03:45
你好,下面这个是oracle的语法,其他数据库估计大同小异
insert into A as select * from Abak;
如果不行的话把as去掉试试,好久没用,记不太清楚了
希望能解决你的问题。
热心网友
时间:2023-10-15 03:45
假设你有3个字段,主键a
select a,b,c from abak
union all
select a,b,c
from abak as t
left join 目标表 as p on t.a=p.a
where p.a is null