public static class Select.Builder extends Object
Modifier and Type | Method and Description |
---|---|
Select.Builder |
distinct()
Uses DISTINCT selection.
|
Select |
from(String table)
Adds the table to select from.
|
Select |
from(String keyspace,
String table)
Adds the table to select from.
|
Select |
from(TableMetadata table)
Adds the table to select from.
|
public Select.Builder distinct()
public Select from(String table)
table
- the name of the table to select from.table
.public Select from(String keyspace, String table)
keyspace
- the name of the keyspace to select from.table
- the name of the table to select from.keyspace.table
.public Select from(TableMetadata table)
table
- the table to select from.table
.