Hello there,

Many other databases support using OFFSET without LIMIT:

SELECT *
FROM t
ORDER BY id
OFFSET 10


It's useful, occasionally, and it could be implemented as syntax sugar for 
this:

SELECT *
FROM t
ORDER BY id
LIMIT [ Long.MAX_VALUE ]
OFFSET 10


What do you think?
Lukas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.

Reply via email to