Column is less than a value
Finds all rows whose value on the stated column
is less than the specified value
.
final data = await supabase
.from('cities')
.select('name, country_id')
.lt('country_id', 250);
Finds all rows whose value on the stated column
is less than the specified value
.
final data = await supabase
.from('cities')
.select('name, country_id')
.lt('country_id', 250);