guys, what is the difference between these 2?
# help
a
guys, what is the difference between these 2?
g
So I’m just new to Supabase but find Googling PostgreSQL on detailed Database things works best. This link helped me understand RLS. https://sagargulabani.medium.com/row-level-security-in-postgresql-5d26cdd6a07d Basically Using is for read or delete. With Check is for insert and update needs both as it reads and writes.
a
oh
I have just used
USING
for insert, update and select, will it cause any problem?
g
So I’m out over my skis here, but I believe update will default the With Check to the using, but insert needs With Check.
a
oh wait, insert defaults to with check
so ya i am using with check for insert