Get CSV output from a postgreSQL database directly from the CLI:
1 | psql -A -F ',' -t -c 'select * from tablename;' |
You can then, clearly, redirect the output as desired.
Get CSV output from a postgreSQL database directly from the CLI:
1 | psql -A -F ',' -t -c 'select * from tablename;' |
You can then, clearly, redirect the output as desired.