SelectStatement |
SelectStatement.groupBy(String... groupBy) |
Add/replace the aggregation fields for this query.
|
SelectStatement |
SelectStatementImpl.groupBy(String... groupBy) |
|
SelectStatement |
SelectStatement.having(String having) |
Add/replace the aggregate criteria for this query.
|
SelectStatement |
SelectStatementImpl.having(String having) |
|
SelectStatement |
SelectStatement.limit(long numberOfRows) |
Add/replace the row limit for this query.
|
SelectStatement |
SelectStatement.lockExclusive() |
Locks matching rows exclusively so no other transactions can read or write to them.
|
SelectStatement |
SelectStatement.lockExclusive(Statement.LockContention lockContention) |
Locks matching rows exclusively so no other transactions can read or write to them, using the provided lock contention option.
|
SelectStatement |
SelectStatementImpl.lockExclusive() |
|
SelectStatement |
SelectStatementImpl.lockExclusive(Statement.LockContention lockContention) |
|
SelectStatement |
SelectStatement.lockShared() |
Locks matching rows against updates.
|
SelectStatement |
SelectStatement.lockShared(Statement.LockContention lockContention) |
Locks matching rows against updates using the provided lock contention option.
|
SelectStatement |
SelectStatementImpl.lockShared() |
|
SelectStatement |
SelectStatementImpl.lockShared(Statement.LockContention lockContention) |
|
SelectStatement |
SelectStatement.offset(long limitOffset) |
Add/replace the row offset for this query.
|
SelectStatement |
SelectStatement.orderBy(String... sortFields) |
Add/replace the order specification for this query.
|
SelectStatement |
Table.select(String... projections) |
Create a new select statement using the given projections.
|
SelectStatement |
TableImpl.select(String... projection) |
|
SelectStatement |
SelectStatement.where(String searchCondition) |
Add/replace the search condition for this query.
|