Python: Column matches a pattern

Match only rows where column matches pattern case-sensitively.

Parameters

Examples

With `select()`

response = supabase.table("countries").select("*").like("name", "%Alba%").execute()