You have a CSV file containing data you want to import into a PostgreSQL table but the CSV data is either missing columns or has columns you don't want to import.
Here is how to load only specific columns into your database table:
COPY tablename (col1, col6, col8) FROM 'filename.csv' DELIMITERS ',';