public final class SelectCommand extends Object
Command builder for select commands.
select retrieves all values for specified keys from records or
records matching a condition.
select [keys] from <records>
[at timestamp] [order by ...] [page ...]
select [keys] where <condition>
[at timestamp] [order by ...] [page ...]
| Modifier and Type | Class and Description |
|---|---|
static class |
SelectCommand.AllKeysState
The state after calling
Command#selectAll() with no keys,
indicating that all keys should be selected. |
static class |
SelectCommand.KeyState
The state after specifying keys for the
select command. |
static class |
SelectCommand.SourceState
The terminal state for a
select command, reached after specifying
the data source (records or condition). |