$skip

The $skip system query option specifies that the result must not include the first n entities.

 

Example:

GET Item?$top=5&$skip=5&orderby=ItemCode

 

Attention

This query option only works together with $top and $orderby.

 

youtube ODATA $skip and $top commands, web page handling and $inlinecount command

 

This option is useful when, for example page x from y is required.

Create a statement with $top=x, but the complete count of rows is also required, for which $inlinecount can be used.

The $inlinecount command produces two SQL statements:

1.select count(*) for the count property

2.select top x for the values.