I’ve created a table in supabase and filled it up with some data, Is there anyway 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 entire table from supabase, any solution for this?
>Solution :
You can use the SQL Editor and run the following:
SELECT * FROM `table_name`;