Skip to content

Instantly share code, notes, and snippets.

@imcj
Created May 8, 2019 06:43
Show Gist options
  • Save imcj/931823d87230416de4c4673e2f764530 to your computer and use it in GitHub Desktop.
Save imcj/931823d87230416de4c4673e2f764530 to your computer and use it in GitHub Desktop.
pgsql to csv
```
COPY persons TO 'C:\tmp\persons_db.csv' DELIMITER ',' CSV HEADER;
```
http://www.postgresqltutorial.com/export-postgresql-table-to-csv-file/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment