"Kei" <[EMAIL PROTECTED]> writes:

> sqlite> select * from tbl offset 4 limit 5;
> SQL error: near "4": syntax error
>
> Is the SQL query wrong ?what is the correct SQL query if it is wrong?

The correct syntax has limit first, offset next:

sqlite> select * from tbl limit 5 offset 4;

Derrell

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to