You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add and implement a LIMIT keyword to the query language that allows limiting a result sequence to only n results: LIMIT n, or that allows taking arbitrary ranges LIMIT m,n. Ideally with support for negative numbers, for end-aligned results, e.g. LIMIT -5 gives the last five results whereas LIMIT 5 give the first five.
The text was updated successfully, but these errors were encountered:
Add and implement a
LIMIT
keyword to the query language that allows limiting a result sequence to only n results:LIMIT n
, or that allows taking arbitrary rangesLIMIT m,n
. Ideally with support for negative numbers, for end-aligned results, e.g.LIMIT -5
gives the last five results whereasLIMIT 5
give the first five.The text was updated successfully, but these errors were encountered: