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.
You can use the SQL Editor and run the following:
SELECT * FROM table_name; -- change this for your table name