--- id: range title: "range()" slug: range custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/dart.yml --- import Tabs from '@theme/Tabs'; import TabsPanel from '@theme/TabsPanel'; Limits the result to rows within the specified range, inclusive. ```dart final res = await supabase .from('cities') .select('name, country_id') .range(0,3) .execute(); ``` ## Examples ### With `select()` ```dart final res = await supabase .from('cities') .select('name, country_id') .range(0,3) .execute(); ```