Subject | Re: [Firebird-Java] Limiting return |
---|---|
Author | Roman Rokytskyy |
Post date | 2005-11-15T14:41:31Z |
> How to limit the number of registers returned from a query?Please use Firebird-Support list for question about Firebird in general.
> In DB2 I use something like FETCH FIRST 10 ROWS ONLY
The short answer is SELECT FIRST 10 [SKIP n] col1, col2 FROM ...
Roman