public static interface Selectable.Select
Find a complete Wiki and documentation here:
https://github.com/bingzer/DbQuery/wiki
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Selectable.Select.OrderBy
Order By
|
| Modifier and Type | Method and Description |
|---|---|
Selectable.Select |
columns(java.lang.String... columns)
Specified the column to return.
|
Selectable.Select.OrderBy |
orderBy(java.lang.String... columns)
Order by.
|
Selectable.Select columns(java.lang.String... columns)
columns - column namesSelectable.SelectSelectable.Select.OrderBy orderBy(java.lang.String... columns)
db.get("Table").select().orderBy("Id", "Name", "Price DESC");
columns - column namesSelectable.Select