PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Ausgabe in CSV in Postgres mit doppelten Anführungszeichen

Mit FORCE_QUOTE

So geht's:

psql -U user -h server2 database -c "\copy (select ...) to '~/myfile.csv' WITH (FORMAT CSV, HEADER TRUE, FORCE_QUOTE *);"

COPY Befehl Dokumentation