SQL如何读取一个表的数据再插入另一个表,这两个表在不同服务器。
发布网友
发布时间:2022-04-09 21:08
我来回答
共2个回答
热心网友
时间:2022-04-09 22:38
首先,先建立2个数据库的dblink,然后可以在一个数据库中访问另外一个数据库
下面以在2服务器上访问1数据库为前提,写SQL文
插入用sql
insert into B values select a,b,c from A where d >= sysdate - 10
更新用SQL
update B set h = (select c from A where d < sysdate - 10 and e >= sysdate - 10 and a=B.f and b = B.g)
热心网友
时间:2022-04-09 23:56
A表建触发器,调用存储过程,向B表更新数据。