How can I import data from csv file attached in resources to my table in pgadmin?

Viewed 22
COPY PUBLIC. "Science_Class"(Enrollment_no", "name", "marks") FROM 'c:\users\HP\Student.csv' CSV HEADER ;

I'm trying to import the Student. Csv file into the science_class table so I can add other data from it but keep getting an error 'couldn't open file for reading :Permission denied

0 Answers
Related