nosqlsupabasesupabase-database

How to download table created in supabase


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.


Solution

  • You can use the SQL Editor and run the following:

    SELECT * FROM table_name; -- change this for your table name
    

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