Flutter: Column matches a pattern (original) (raw)

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

Parameters

(Required)
The column to filter on.

(Required)
The pattern to match with.

Examples

With select()

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