Match only rows where column matches pattern case-sensitively.
column
pattern
The name of the column to apply a filter on
The pattern to match by
response = supabase.table("countries").select("*").like("name", "%Alba%").execute()