Python: Column matches a case-insensitive pattern

Match only rows where column matches pattern case-insensitively.

Parameters

Examples

With `select()`

response = supabase.table("countries").select("*").ilike("name", "%alba%").execute()