Hi Team,
I have one query regarding one of the user was created 100 documents, But we need to fetch the documents in between 50 to 60, so how can we get the particular range of documents using dql.
Regards,
Venkat.
The RETURN_RANGE hint specifies which rows are returned by a query sorted by the returned
values of specified properties. This hint is provided as a general way to paginate the results of
a query. The syntax of this hint is:
RETURN_RANGE starting_row ending_row [optimize_top_row] 'sorting_clause'
RETURN_RANGE argument descriptions
The syntax of the sorting clause is:
'attribute_name[ASC|DESC][,attribute_name[ASC|DESC]...]'
Thank you very much for sharing this information.