range()
将结果限制在指定范围内的行,包括在内。
final res = await supabase
.from('cities')
.select('name, country_id')
.range(0,3)
.execute();
Examples
使用select()
final res = await supabase
.from('cities')
.select('name, country_id')
.range(0,3)
.execute();