Dart Reference v2.0

Column is less than or equal to a value

Finds all rows whose value on the stated column is less than or equal to the specified value.

Parameters
    column
    REQUIRED
    String

    The column to filter on.

    value
    REQUIRED
    Object

    The value to filter with.


final data = await supabase
  .from('countries')
  .select()
  .lte('id', 2);