.lt()

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

const { data, error } = await supabase
  .from('cities')
  .select('name, country_id')
  .lt('country_id', 250)

参数

  • column required object

    要筛选的“列”.
  • value required object

    用于筛选的“值”.

例子

使用 select()

const { data, error } = await supabase
  .from('cities')
  .select('name, country_id')
  .lt('country_id', 250)

使用 update()

const { data, error } = await supabase
  .from('cities')
  .update({ name: 'Mordor' })
  .lt('country_id', 250)

使用 delete()

const { data, error } = await supabase
  .from('cities')
  .delete()
  .lt('country_id', 250)

使用 rpc()

// Only valid if the Postgres function returns a table type.
const { data, error } = await supabase
  .rpc('echo_all_cities')
  .lt('country_id', 250)

results matching ""

    No results matching ""