Subject | Re: Fetching a fix number of records |
---|---|
Author | dwilson805 |
Post date | 2005-03-17T14:50:16Z |
--- In firebird-support@yahoogroups.com, "mfyeung_home"
<mingyeung@s...> wrote:
select first 100 * from
To get the second 100 records, skipping the first 100, use:
select first 100 skip 100 * from
HTH,
Dan.
<mingyeung@s...> wrote:
>To get the first 100 records, use:
>
> Can anyone tell me how to fetch the first 100 records in a select
> statement?
select first 100 * from
To get the second 100 records, skipping the first 100, use:
select first 100 skip 100 * from
HTH,
Dan.