Answers for "how to create a csv file from postgresql table"

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

Code answers related to "how to create a csv file from postgresql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language