Last Updated: February 25, 2016
·
403
· cathywise

CSV into Postgres

copy existing_table from '/home/user/cooldata.csv' with (format csv, header);

The table should already be there, and yes, that path needs to be absolute. This is for csv with a header row. Drop the header part if you don't have one.