JavaScript: Column is less than or equal to a value

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

Parameters

Examples

With `select()`

const { data, error } = await supabase
  .from('characters')
  .select()
  .lte('id', 2)