Flutter: Column matches a pattern

Finds all rows whose value in the stated column matches the supplied pattern (case sensitive).

Parameters

Examples

With `select()`

final data = await supabase
  .from('countries')
  .select()
  .like('name', '%Alba%');