I was trying to import a CSV file to my Postgresql with the frist 8 lines skipped and start from the 9th line. My codes below works to read from the second line and treat the first line as header:
    create table report(
            id integer,
            name character(3),
            orders integer,
            shipments float
            );
COPY report 
FROM 'C:\Users\sample.csv' DELIMITER ',' CSV HEADER;
Now how to improve this code to read from the 9th line. Thank you!
 
     
    