これはPostgresUPDATEJOIN形式です:
UPDATE address
SET cid = customers.id
FROM customers
WHERE customers.id = address.id
その他のバリエーションは次のとおりです。http://mssql-to-postgresql.blogspot.com/2007/12/updates-in-postgresql-ms-sql-mysql.html
これはPostgresUPDATEJOIN形式です:
UPDATE address
SET cid = customers.id
FROM customers
WHERE customers.id = address.id
その他のバリエーションは次のとおりです。http://mssql-to-postgresql.blogspot.com/2007/12/updates-in-postgresql-ms-sql-mysql.html