我有来自2个数据库的一些数据,每个数据库都在不同的服务器上。我想从服务器A同步到服务器B.
我的情况是:我想为服务器A和服务器B更新/更改status_dt
为true。如何在一个查询命令中更改status_dt
?
查询:
SELECT
item_id, um_id, item_name, status_dt
FROM
mst_item
WHERE
status_dt IS NULL
AND item_id IN (SELECT item_id
FROM dblink('hostaddr=xxx.xxx.xxx.xxx port=5432 dbname=mrp-coba2 user=postgres password=abc',
'select item_id from mst_item') AS t1( item_id character(30)))