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