Answers for "psql export to a csv"

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 "SQL"

Browse Popular Code Answers by Language