Flutter: Column is less than a value

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

Parameters

Examples

With `select()`

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