Watch Neon Developer Days #3 🚀

Import data from CSV

This topic describes how to import data into a Neon database table from a CSV file.

The instructions require a working installation of psql. The psql client is the native command-line client for Postgres. It provides an interactive session for sending commands to Postgres. For more information about psql, refer to the psql reference, in the PostgreSQL Documentation.

The following example uses the ready-to-use neondb database that is created with your Neon project, a table named customer, and a data file named customer.csv. Data is loaded from the customer.csv file into the customer table.

  1. Connect to the neondb database using psql. For example:

    note

    For more information about connecting to Neon with psql, see Connect with psql.

  2. Create the customer table.

    tip

    You can also create tables using the SQL Editor in the Neon Console. See Query with Neon's SQL Editor.

  3. Prepare a customer.csv file with the following data:

  4. From your psql prompt, load the data from the customer.csv file using the \copy option.

    If the command runs successfully, it returns the number of records copied to the database:

    For more information about the \copy option, refer to the psql reference, in the PostgreSQL Documentation.

Need help?

Join the Neon community forum to ask questions or see what others are doing with Neon. Neon Pro Plan users can open a support ticket from the console. For more detail, see Getting Support.

Last updated on

Edit this page
Was this page helpful?