Python: Column matches a pattern

Match only rows where column matches pattern case-sensitively.

Parameters

Examples

With `select()`

response = supabase.table("planets").select("*").like("name", "%Ea%").execute()