5

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.

Mansueli
  • 6,223
  • 8
  • 33
  • 57
risky last
  • 385
  • 4
  • 12

2 Answers2

4

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

Mansueli
  • 6,223
  • 8
  • 33
  • 57
1

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";
Eliane
  • 11
  • 1