Postgresql

通過比較表列從另一個表中添加值

  • July 14, 2022

我在 postgres 中有 2 個表,例如:

表一:

表 B 喜歡:

我想根據表A填充表B中的id列,所以結果會是這樣的:

這是一個簡單的UPDATE 連接語法

UPDATE tableB
SET id = unique_id
FROM tableA
WHERE tableA.unique_coords = tableB.coords;

https://dbfiddle.uk/?rdbms=postgres_14&fiddle=6f820b75952c90ae7cdeadec419f45f6

引用自:https://dba.stackexchange.com/questions/314410