程序包 | 说明 |
---|---|
com.fr.general.jsqlparser.parser | |
com.fr.general.jsqlparser.statement.select | |
com.fr.general.jsqlparser.util |
限定符和类型 | 方法和说明 |
---|---|
SelectItem |
CCJSqlParser.SelectItem() |
限定符和类型 | 方法和说明 |
---|---|
java.util.List<SelectItem> |
CCJSqlParser.SelectItemsList() |
限定符和类型 | 类和说明 |
---|---|
class |
AllColumns
All the columns (as in "SELECT * FROM ...")
|
class |
AllTableColumns |
class |
SelectExpressionItem
An expression as in "SELECT expr1 AS EXPR"
|
限定符和类型 | 方法和说明 |
---|---|
java.util.List<SelectItem> |
Distinct.getOnSelectItems()
A list of
SelectItem s expressions, as in "select DISTINCT ON (a,b,c) a,b FROM..." |
java.util.List<SelectItem> |
PlainSelect.getSelectItems()
The
SelectItem s in this query (for example the A,B,C in "SELECT A,B,C") |
java.util.List<SelectItem> |
WithItem.getWithItemList()
The
SelectItem s in this WITH (for example the A,B,C in "WITH mywith (A,B,C) AS ...") |
限定符和类型 | 方法和说明 |
---|---|
void |
PlainSelect.addSelectItems(SelectItem... items) |
限定符和类型 | 方法和说明 |
---|---|
void |
Distinct.setOnSelectItems(java.util.List<SelectItem> list) |
void |
PlainSelect.setSelectItems(java.util.List<SelectItem> list) |
void |
WithItem.setWithItemList(java.util.List<SelectItem> withItemList) |
限定符和类型 | 方法和说明 |
---|---|
static Select |
SelectUtils.buildSelectFromTableAndSelectItems(Table table,
SelectItem... selectItems) |