Subject | RE: [firebird-support] Firebird and LIMIT |
---|---|
Author | Sasha Matijasic |
Post date | 2008-09-08T12:00:21Z |
> I'm converting an app from MySQL to FB. One of the bothersome issues isselect * from foo
> syntax.
> MySQL has the LIMIT modifier which takes a numeric argument, limiting
> the number of rows retuend by a query.
> MSSQL has an equivalent in TOP. does Firebird have anything like this?
where ...
rows n to m
or
select first n skip m from foo
where...
(this syntax is older, if you are using version 2 or above, use rows)
Sasha