6

I've created a table in supabase and filled it up with some data, Is there any way to download this table without interacting with supabase client?

I want to save this as CSV file for future use but there's no apparent feature to extract the entire table from supabase.

2 Answers 2

7

You can use the SQL Editor and run the following:

SELECT * FROM `table_name`;

Then, you can click on results -> Download CSV: enter image description here

1
  • does not work properly if too many rows Dec 19, 2023 at 9:30
2

Mansueli is right! I would like to add that if you get the error that your table does not exist, run the following:

SELECT * FROM public."table_name";

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.