Hello, I am looking to use the supabase js fetch t...
# sql
r
Hello, I am looking to use the supabase js fetch to get this result, but I cannot wrap my head about how I could do something like this:
Copy code
sql
SELECT season
FROM battle
INNER JOIN team ON battle.id = team.battle_id
WHERE wizard_id = 3
GROUP BY season
Any ideas? I would like to avoid creating a view or rpc if possible