Bulk Insert and Export Data with csv Files with Postgres copy Command

Tyler Clark
InstructorTyler Clark
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

When working with databases, it seems inevitable that you will find yourself needing to export data from a table to send along to another team, company, or organization. Or vise versa, you have a file, possibly a csv, and you want to add all of it into your database. There are lots of options to do this but the easiest is by using the copy command in Postgres.

Instructor: [0:00] Importing and exporting data from some type of file source like a CSV within SQL is super common. Luckily for us, Postgres has an answer for it. As we can see, our users table is currently empty.

[0:12] I have a CSV here that lives locally on my machine. I want to bulk add every row as you see here straight into my users database. Back in the terminal, I'm going to write copy users user_handle, first_name, last_name, email from a file path on my machine delimiter, it's going to be a coma, CSV, and header.

[0:38] When this command runs correctly, we will bulk insert all the rows into our table. As you can see, we added 500 rows. The keyword that makes this possible is this copy command. We begin by saying copy, then the table we want to copy into so, in our case, the users table.

[0:55] Next, we could optionally define the columns we want to add data to from our CSV. Our CSV shows that the columns are in the same order as our users table. This command will work just fine without listing these out. Next stop, we say from and then the file location of the CSV on your machine.

[1:13] The ending of the copy command is how we define options. First off, the copy command works with a couple of different formats. The default is a tab character in text format. Ours is a CSV, so we want to deliminate the different column values by commas.

[1:29] These two are a pair. You can think of it like a key value pair. Unlike how these two work to defining an option, CSV and header are individual options. First of all, CSV defines the format option. Other format options are text or binary. As you can see, you don't separate these options with commas.

[1:51] Finally, header's, again, its on option and it's a Boolean that when present represents true, in absence is false. This is telling the copy command that the first row in our CSV is a header row, and not to copy those values over to the table.

[2:06] Also, the copy command is pretty cool, and the fact that it has to use cases. In our first example, we are copying data from a CSV to our database. By simply changing this from to a to, we could do the inverse. With all the same options, we can create a CSV export of our data. Now, I have a SQL_events_users_copy CSV in this project with the same data as the original that was used to populate it.

egghead
egghead
~ 39 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today