Answers for "how to save csv file in postgresql database"

SQL
1

postgresql export output table as a csv

COPY table_name TO 'file_name.csv' DELIMITER ',' CSV HEADER;
Posted by: Guest on February-07-2021
0

run postgresql dump to csv

copy (SELECT * FROM persons) to 'C:tmppersons_client.csv' with csv
Posted by: Guest on August-06-2020

Code answers related to "how to save csv file in postgresql database"

Code answers related to "SQL"

Browse Popular Code Answers by Language