.lt()

查找所有在所述 column上的值小于指定 value的记录。

final res = await supabase
  .from('cities')
  .select('name, country_id')
  .lt('country_id', 250)
  .execute();

Examples

使用 select()

final res = await supabase
  .from('cities')
  .select('name, country_id')
  .lt('country_id', 250)
  .execute();

使用 update()

final res = await supabase
  .from('cities')
  .update({ 'name': 'Mordor' })
  .lt('country_id', 250)
  .execute();

使用 delete()

final res = await supabase
  .from('cities')
  .delete()
  .lt('country_id', 250)
  .execute();

results matching ""

    No results matching ""