public static interface SelectBuilder.SelectLimitOffset
Modifier and Type | Method and Description |
---|---|
SelectBuilder.SelectLimitOffset |
limit(long limit)
Apply a limit of rows to read.
|
SelectBuilder.SelectLimitOffset |
limitOffset(long limit,
long offset)
Apply
limit and offset parameters to the select statement. |
SelectBuilder.SelectLimitOffset |
offset(long offset)
Apply an offset where to start reading rows.
|
SelectBuilder.SelectLimitOffset limitOffset(long limit, long offset)
limit
and offset
parameters to the select statement. To read the first 20 rows from start
use limitOffset(20, 0)
. to read the next 20 use limitOffset(20, 20)
.limit
- rows to read.offset
- row offset, zero-based.this
builder.SelectBuilder.SelectLimitOffset limit(long limit)
limit
- rows to read.this
builder.SelectBuilder.SelectLimitOffset offset(long offset)
offset
- start offset.this
builder.Copyright © 2017–2020 Pivotal Software, Inc.. All rights reserved.