Voor de UPDATE
Gebruik:
UPDATE table1
SET col1 = othertable.col2,
col2 = othertable.col3
FROM othertable
WHERE othertable.col1 = 123;
Voor de INSERT
Gebruik:
INSERT INTO table1 (col1, col2)
SELECT col1, col2
FROM othertable
U hebt de VALUES
. niet nodig syntaxis als u een SELECT gebruikt om de INSERT-waarden in te vullen.