I have a table in Postgres with only 2 columns
CREATE table dummy(col1 char(10), col2 char(10));
The CSV file has the following columns:
gid prov name pop1996
4468 BC VANCOUVER 514008
4501 BC SURREY 304477
4473 BC BURNABY 179209
4485 BC RICHMOND 148867
How can I copy gid and name only from this file using \COPY
?