Modifier and Type | Method and Description |
---|---|
static CustomSelectItem |
Select.customSelectItem(String format,
SelectItem... selectItems) |
static Select |
Select.select(SelectItem... selectItems) |
Modifier and Type | Class and Description |
---|---|
class |
Column
列
|
Modifier and Type | Class and Description |
---|---|
class |
Function
A function as MAX,COUNT...
|
Modifier and Type | Method and Description |
---|---|
static MysqlSelect |
MysqlSelect.select(SelectItem... selectItems) |
static InformixSelect |
InformixSelect.select(SelectItem... selectItems) |
static DB2Select |
DB2Select.select(SelectItem... selectItems) |
static OracleSelect |
OracleSelect.select(SelectItem... selectItems) |
static DerbySelect |
DerbySelect.select(SelectItem... selectItems) |
static H2Select |
H2Select.select(SelectItem... selectItems) |
static SqlServerSelect |
SqlServerSelect.select(SelectItem... selectItems) |
Modifier and Type | Method and Description |
---|---|
List<SelectItem> |
PlainSelect.getSelectItems()
The
SelectItem s in this query (for example the A,B,C in "SELECT
A,B,C") |
Modifier and Type | Method and Description |
---|---|
void |
PlainSelect.addSelectItems(SelectItem... items) |
Modifier and Type | Method and Description |
---|---|
void |
PlainSelect.setSelectItems(List<SelectItem> list) |
Modifier and Type | Class and Description |
---|---|
class |
AllColumns
All the columns (as in "SELECT * FROM ...")
|
class |
AllTableColumns |
class |
CustomSelectItem
格式化的selectItem
|
class |
Distinct
A DISTINCT [(expression, ...)] clause
|
class |
FragmentSelectItemSql
select 与 from 之间的特殊化sql片段
|
class |
SelectExpressionItem
An expression as in "SELECT expr1 AS EXPR"
|
class |
Top
A top clause in the form [TOP (row_count) or TOP row_count]
|
Modifier and Type | Method and Description |
---|---|
SelectItem[] |
CustomSelectItem.getItems() |
SelectItem |
Distinct.getSelectItem() |
Modifier and Type | Method and Description |
---|---|
static Distinct |
Distinct.distinct(SelectItem selectItem) |
void |
Distinct.setSelectItem(SelectItem selectItem) |
static Top |
Top.top(long rowCount,
SelectItem selectItem) |
static Top |
Top.topParameter(long rowCount,
SelectItem selectItem) |
Constructor and Description |
---|
CustomSelectItem(String format,
SelectItem... items) |
Distinct(SelectItem selectItem) |
Top(long rowCount,
boolean rowCountJdbcParameter,
boolean hasParenthesis,
boolean isPercentage,
SelectItem selectItem) |
Copyright © 2006–2018 TinyGroup. All rights reserved.