Importing Data into a Table

I am wondering -- is it possible to import data into a table in supabase? For example if I have either a csv file or a json file -- can I import that data into a table via the backend of supabase? If so, how? Thanks :).
1 Reply
silentworks
silentworks3y ago
You can do this in the UI when you are creating the table, there is an import spreadsheet button. If you are trying to do this after the table has been created you will need to use psql or any tool that can connect to your database directly. Do a google search for how to import csv into Postgres. You can find you database connection info on this page https://app.supabase.com/project/_/settings/database, scroll to the section that says Connection string.

Did you find this page helpful?