ilike()

Match only rows where column matches pattern case-insensitively.

1const { data, error } = await supabase
2  .from('countries')
3  .select()
4  .like('name', '%alba%')

Parameters#

  • columnrequired
    ColumnName

    The column to filter on

  • patternrequired
    string

    The pattern to match with

Examples#

With select()#

1create table
2  countries (id int8 primary key, name text);
3
4insert into
5  countries (id, name)
6values
7  (1, 'Afghanistan'),
8  (2, 'Albania'),
9  (3, 'Algeria');