If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
You may also use FIRST keyword to to limit the number of rows returned in a query.
example:
select first 5 * from test_tbl ;
Regards,
Shriyan
My 2c
This first 5 method is much better - on one of my tables the rowid starts at 259 - so 'where rowid < 6' does not return anything, but 'first 5' gives 5 returns.