Column is less than or equal to a value
Match only rows where column
is less than or equal to value
.
Parameters
- columnREQUIREDstring
The column to filter on
- valueREQUIREDany
The value to filter with
const { data, error } = await supabase
.from('countries')
.select()
.lte('id', 2)