Column matches a pattern
Finds all rows whose value in the stated column
matches the supplied pattern
(case sensitive).
final res = await supabase
.from('cities')
.select('name, country_id')
.like('name', '%la%')
.execute();
Finds all rows whose value in the stated column
matches the supplied pattern
(case sensitive).
final res = await supabase
.from('cities')
.select('name, country_id')
.like('name', '%la%')
.execute();
Not to worry, our specialist engineers are here to help. Submit a support ticket through the Dashboard.