in reply to Re: Using the DBI to return the first ix/i rows
in thread Using the DBI to return the first ix/i rows
In case you're using Oracle: you don't have a LIMIT SQL command (go figure), so you need to use ROWNUM instead:
SELECT * FROM table WHERE ROWNUM < 10;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Using the DBI to return the first ix/i rows
by davorg (Chancellor) on Jan 25, 2001 at 16:40 UTC |