Stand-off Text Annotation Model (STAM) is a data model for stand-off-text annotation where any information on a text is represented as an annotation. This repository contains the model's full specification, extensions, schemas, examples and documentation.
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.
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.