Match only rows where column matches pattern case-sensitively.
column
pattern
The column to filter on
The pattern to match with
const \{ data, error \} = await supabase .from('countries') .select() .like('name', '%Alba%')