Import CSV File Into PosgreSQL Table

PHOTO EMBED

Fri Jun 30 2023 19:15:52 GMT+0000 (Coordinated Universal Time)

Saved by @mvieira

COPY persons(first_name, last_name, dob, email)
FROM 'C:\sampledb\persons.csv'
DELIMITER ','
CSV HEADER;
Code language: SQL (Structured Query Language) (sql)
content_copyCOPY

https://www.postgresqltutorial.com/postgresql-tutorial/import-csv-file-into-posgresql-table/