Skip to content

Instantly share code, notes, and snippets.

@kmoppel
Created January 11, 2017 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmoppel/124f2420b3c978617fd1cf0a896e3eed to your computer and use it in GitHub Desktop.
Save kmoppel/124f2420b3c978617fd1cf0a896e3eed to your computer and use it in GitHub Desktop.
-- exporting data with COPY to Excel
\copy (select * from t_test limit 2) to '/tmp/test.dump' with (format csv, header)
-- on Windows
\copy (select * from t_test limit 2) to 'c:\\User\\X\\test.dump' with (format csv, header)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment