Til OPDATERING
Brug:
UPDATE table1
SET col1 = othertable.col2,
col2 = othertable.col3
FROM othertable
WHERE othertable.col1 = 123;
Til INSERT
Brug:
INSERT INTO table1 (col1, col2)
SELECT col1, col2
FROM othertable
Du behøver ikke VALUES
syntaks, hvis du bruger en SELECT til at udfylde INSERT-værdierne.