Answers for "insert data to postgresql from excel"

SQL
0

insert data to postgresql from excel

COPY persons(first_name, last_name, dob, email)
FROM 'C:\sampledb\persons.csv'
DELIMITER ','
CSV HEADER;
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on February-27-2022

Code answers related to "insert data to postgresql from excel"

Code answers related to "SQL"

Browse Popular Code Answers by Language