-
-
Save ferhatelmas/02a03c0dc555465d6dc4 to your computer and use it in GitHub Desktop.
Importing and Exporting CSV files with PostgreSQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Import CSV into table t_words | |
COPY t_words FROM '/path/to/file.csv' DELIMITER ',' CSV; | |
-- You can tell quote char with QUOTE | |
-- and change delimiter with DELIMITER | |
-- Import CSV into table t_words, | |
-- telling what columns to use | |
COPY t_words("name", "count", "def") FROM 'file.csv' DELIMITER ',' CSV; | |
-- Export table to a CSV file | |
COPY t_words TO 'file.csv' DELIMITER ',' CSV HEADER; | |
-- Export custom results to a CSV file | |
COPY (SELECT word, def FROM t_words) TO 'file.csv' CSV; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment