lte()

Match only rows where column is less than or equal to value.

1const { data, error } = await supabase
2  .from('countries')
3  .select()
4  .lte('id', 2)

Parameters#

  • columnrequired
    ColumnName

    The column to filter on

  • valuerequired
    object

    The value to filter 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');