Skip to content

Instantly share code, notes, and snippets.

@peacefixation
Last active October 9, 2023 00:05
Show Gist options
  • Save peacefixation/d6f3ae9a4adb43a7ce2a8fc63391209c to your computer and use it in GitHub Desktop.
Save peacefixation/d6f3ae9a4adb43a7ce2a8fc63391209c to your computer and use it in GitHub Desktop.
Postgres Cheat Sheet
-- copy query to CSV
\copy (select * from some_table) TO '/tmp/query-xxx.csv' CSV HEADER
-- dump table to SQL inserts
pg_dump -h <host> -U <user> --schema=<schema> --table=<schema.table> --data-only --column-inserts <database> > output.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment