→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
‎12-15-2014 10:13 AM
CREATE TEMP TABLE tmp_x (id int, apple text, banana text);
COPY tmp_x FROM '/absolute/path/to/file' (FORMAT csv);
UPDATE tbl
SET banana = tmp_x.banana
FROM tmp_x
WHERE tbl.id = tmp_x.id;
DROP TABLE tmp_x;
Solved! Go to Solution.
‎01-27-2015 09:46 AM
‎01-27-2015 09:46 AM
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now