Add a 0-based OFFSET clause to the query. Offsets are 0-based as they describe the number of rows to skip . If there is no LIMIT … OFFSET or TOP clause in your RDBMS, or if your RDBMS does not natively support offsets, this is emulated with a <c
(Number offset)
| 244 | * <code>SELECT</code> statements. |
| 245 | */ |
| 246 | @NotNull @CheckReturnValue |
| 247 | @Support |
| 248 | SelectLimitAfterOffsetStep<R> offset(Number offset); |
| 249 |
no outgoing calls
no test coverage detected