Column matches a case-insensitive pattern
Finds all rows whose value in the stated column
matches the supplied pattern
(case insensitive).
final data = await supabase
.from('cities')
.select('name, country_id')
.ilike('name', '%la%');
Finds all rows whose value in the stated column
matches the supplied pattern
(case insensitive).
final data = await supabase
.from('cities')
.select('name, country_id')
.ilike('name', '%la%');
Need some help?
Contact supportLatest product updates?
See ChangelogSomething's not right?
Check system status