Answers for "postgres select as csv"

SQL
1

postgres select as csv

-- To stdout
COPY (select * from table) TO STDOUT WITH CSV HEADER;

-- To file
COPY (select * from table) TO '/table.csv' WITH CSV HEADER;
Posted by: Guest on January-27-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language