Package | Description |
---|---|
com.datastax.driver.core.querybuilder |
A CQL3 query builder.
|
Modifier and Type | Method and Description |
---|---|
static Ordering |
QueryBuilder.asc(String columnName)
Ascending ordering for the provided column.
|
static Ordering |
QueryBuilder.desc(String columnName)
Descending ordering for the provided column.
|
Modifier and Type | Method and Description |
---|---|
Select |
Select.orderBy(Ordering... orderings)
Adds an ORDER BY clause to this statement.
|
Select |
Select.Where.orderBy(Ordering... orderings)
Adds an ORDER BY clause to the SELECT statement this WHERE clause if
part of.
|