gte()
gte()用于查找所有在所述列(column)
上的值大于或等于指定值(value)
的记录。
案例1 (使用select) link
final data = await supabase
.from('cities')
.select('name, country_id')
.gte('country_id', 250);
案例2 (使用update) link
final data = await supabase
.from('cities')
.update({ 'name': 'Mordor' })
.gte('country_id', 250);
案例3 (使用delete) link
final data = await supabase
.from('cities')
.delete()
.gte('country_id', 250);
案例4 (使用rpc) link
// Only valid if the Stored Procedure returns a table type.
final data = await supabase
.rpc('echo_all_cities')
.gte('country_id', 250);