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