Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 211 Bytes

File metadata and controls

14 lines (9 loc) · 211 Bytes

SQL

  • Execute a command from a file (in psql)
\i [filename here]
  • Write the results of a query to a file
COPY ([query here]) TO '[absolute file path here]' WITH CSV DELIMITER ',';