importing data files
I don’t understand how to upload data files to the web version. I want to be able to write right into the sql editor without using another platform for a school project.
1 Reply
genetic-orange•3w ago
Hey!
You can't upload files through the Neon console. Instead, just use
psql from your local machine. If you're using a CSV, it would be something like this for example :
\copy table_name (all, the, columns) FROM 'path/to/file.csv' WITH (FORMAT csv, HEADER true)