I had a question surrounding the COPY
command in PostgreSQL. I have a CSV file that I only want to copy some of the columns values into my PostgreSQL table.
Is it possible to do this? I am familiar with using the COPY
command to copy all of the data from a CSV into a table using the header to map to the column names but how is this possible when I only want some of the columns?