.gt()
找到所有在所述column
上的值大于指定value
的记录。
final res = await supabase
.from('cities')
.select('name, country_id')
.gt('country_id', 250)
.execute();
Examples
使用 select()
final res = await supabase
.from('cities')
.select('name, country_id')
.gt('country_id', 250)
.execute();
使用 update()
final res = await supabase
.from('cities')
.update({ 'name': 'Mordor' })
.gt('country_id', 250)
.execute();
使用 delete()
final res = await supabase
.from('cities')
.delete()
.gt('country_id', 250)
.execute();