Modifier and Type | Method and Description |
---|---|
default Table |
Mapper.getDefaultTable()
获取默认的表对象
|
Modifier and Type | Method and Description |
---|---|
Table |
JoinOn.getTable()
Gets the value of table
|
Table |
Column.getTable()
Gets the value of table
|
Modifier and Type | Method and Description |
---|---|
static JoinOn |
JoinOn.full(Table table,
List<Column> columnPairs)
full join on
|
static JoinOn |
JoinOn.full(Table table,
List<Column> columnPairs,
List<CriteriaItem> criteriaItems)
full join on
|
static JoinOn |
JoinOn.inner(Table table,
List<Column> columnPairs)
inner join on
|
static JoinOn |
JoinOn.inner(Table table,
List<Column> columnPairs,
List<CriteriaItem> criteriaItems)
inner join on
|
static JoinOn |
JoinOn.left(Table table,
List<Column> columnPairs)
left join on
|
static JoinOn |
JoinOn.left(Table table,
List<Column> columnPairs,
List<CriteriaItem> criteriaItems)
left join on
|
static JoinOn |
JoinOn.none(Table table,
List<Column> columnPairs)
join on
|
static JoinOn |
JoinOn.none(Table table,
List<Column> columnPairs,
List<CriteriaItem> criteriaItems)
join on
|
static JoinOn |
JoinOn.right(Table table,
List<Column> columnPairs)
right join on
|
static JoinOn |
JoinOn.right(Table table,
List<Column> columnPairs,
List<CriteriaItem> criteriaItems)
right join on
|
void |
Column.setTable(Table table)
Sets the table
|
Constructor and Description |
---|
Column(Table table,
String name)
构造函数
|
Modifier and Type | Method and Description |
---|---|
Table |
TableColumnInfo.getTable()
Gets the value of table
|
Table |
TableColumnSetValues.getTable()
Gets the value of table
|
Table |
TableColumnValues.getTable()
Gets the value of table
|
Modifier and Type | Method and Description |
---|---|
void |
TableColumnInfo.setTable(Table table)
Sets the table
|
void |
TableColumnSetValues.setTable(Table table)
Sets the table
|
void |
TableColumnValues.setTable(Table table)
Sets the table
|
Constructor and Description |
---|
TableColumnInfo(Table table,
List<ColumnInfo> columnInfos)
构造函数
|
TableColumnSetValues(Table table,
List<ColumnSetValue> columnValues)
构造函数
|
TableColumnValues(Table table,
List<ColumnValue> columnValues)
构造函数
|
Modifier and Type | Method and Description |
---|---|
DeleteSql |
DeleteSql.deleteFrom(Table table)
删除表,item和from同时设置
|
Modifier and Type | Method and Description |
---|---|
DeleteSql |
DeleteSql.deleteFrom(List<Table> tables)
删除表,item和from同时设置
|
Modifier and Type | Method and Description |
---|---|
CountSql |
CountSqlImpl.complexFullJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
DeleteSql |
DeleteSqlImpl.complexFullJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
UpdateSql |
UpdateSqlImpl.complexFullJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
QuerySql<T> |
QuerySqlImpl.complexFullJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
CountSql |
CountSqlImpl.complexInnerJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
DeleteSql |
DeleteSqlImpl.complexInnerJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
UpdateSql |
UpdateSqlImpl.complexInnerJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
QuerySql<T> |
QuerySqlImpl.complexInnerJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
CountSql |
CountSqlImpl.complexLeftJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
DeleteSql |
DeleteSqlImpl.complexLeftJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
UpdateSql |
UpdateSqlImpl.complexLeftJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
QuerySql<T> |
QuerySqlImpl.complexLeftJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
CountSql |
CountSqlImpl.complexRightJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
DeleteSql |
DeleteSqlImpl.complexRightJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
UpdateSql |
UpdateSqlImpl.complexRightJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
QuerySql<T> |
QuerySqlImpl.complexRightJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
DeleteSql |
DeleteSqlImpl.delete(Table table) |
DeleteSql |
DeleteSqlImpl.deleteFrom(Table table) |
CountSql |
CountSqlImpl.from(Table table) |
DeleteSql |
DeleteSqlImpl.from(Table table) |
QuerySql<T> |
QuerySqlImpl.from(Table table) |
CountSql |
CountSqlImpl.fullJoinOn(Table table,
List<Column> columnPairs) |
DeleteSql |
DeleteSqlImpl.fullJoinOn(Table table,
List<Column> columnPairs) |
UpdateSql |
UpdateSqlImpl.fullJoinOn(Table table,
List<Column> columnPairs) |
QuerySql<T> |
QuerySqlImpl.fullJoinOn(Table table,
List<Column> columnPairs) |
CountSql |
CountSqlImpl.innerJoinOn(Table table,
List<Column> columnPairs) |
DeleteSql |
DeleteSqlImpl.innerJoinOn(Table table,
List<Column> columnPairs) |
UpdateSql |
UpdateSqlImpl.innerJoinOn(Table table,
List<Column> columnPairs) |
QuerySql<T> |
QuerySqlImpl.innerJoinOn(Table table,
List<Column> columnPairs) |
InsertSql |
InsertSqlImpl.insert(Table table) |
CountSql |
CountSqlImpl.joinOn(Table table,
List<Column> columnPairs) |
DeleteSql |
DeleteSqlImpl.joinOn(Table table,
List<Column> columnPairs) |
UpdateSql |
UpdateSqlImpl.joinOn(Table table,
List<Column> columnPairs) |
QuerySql<T> |
QuerySqlImpl.joinOn(Table table,
List<Column> columnPairs) |
CountSql |
CountSqlImpl.leftJoinOn(Table table,
List<Column> columnPairs) |
DeleteSql |
DeleteSqlImpl.leftJoinOn(Table table,
List<Column> columnPairs) |
UpdateSql |
UpdateSqlImpl.leftJoinOn(Table table,
List<Column> columnPairs) |
QuerySql<T> |
QuerySqlImpl.leftJoinOn(Table table,
List<Column> columnPairs) |
CountSql |
CountSqlImpl.rightJoinOn(Table table,
List<Column> columnPairs) |
DeleteSql |
DeleteSqlImpl.rightJoinOn(Table table,
List<Column> columnPairs) |
UpdateSql |
UpdateSqlImpl.rightJoinOn(Table table,
List<Column> columnPairs) |
QuerySql<T> |
QuerySqlImpl.rightJoinOn(Table table,
List<Column> columnPairs) |
UpdateSql |
UpdateSqlImpl.update(Table table) |
Modifier and Type | Method and Description |
---|---|
DeleteSql |
DeleteSqlImpl.delete(List<Table> tables) |
DeleteSql |
DeleteSqlImpl.deleteFrom(List<Table> tables) |
CountSql |
CountSqlImpl.from(List<Table> tables) |
DeleteSql |
DeleteSqlImpl.from(List<Table> tables) |
QuerySql<T> |
QuerySqlImpl.from(List<Table> tables) |
InsertSql |
InsertSqlImpl.insert(List<Table> tables) |
UpdateSql |
UpdateSqlImpl.update(List<Table> tables) |
Modifier and Type | Method and Description |
---|---|
T |
JoinOnSupport.complexFullJoinOn(Table table,
List<CriteriaItem> criteriaItems)
`FULL JOIN table t1 on t1.column1=t0.column2, t1.column3=t0.column4 AND t1.column5=?`语句
|
T |
JoinOnSupport.complexInnerJoinOn(Table table,
List<CriteriaItem> criteriaItems)
`INNER JOIN table t1 on t1.column1=t0.column2, t1.column3=t0.column4 AND t1.column5=?`语句
|
T |
JoinOnSupport.complexLeftJoinOn(Table table,
List<CriteriaItem> criteriaItems)
`LEFT JOIN table t1 on t1.column1=t0.column2, t1.column3=t0.column4 AND t1.column5=?`语句
|
T |
JoinOnSupport.complexRightJoinOn(Table table,
List<CriteriaItem> criteriaItems)
`RIGHT JOIN table t1 on t1.column1=t0.column2, t1.column3=t0.column4 AND t1.column5=?`语句
|
T |
DeleteSupport.delete(Table table)
`DELETE t1.*` 语句, t1表示"表别名"
|
T |
FromSupport.from(Table table)
`FROM table1 t1` 语句, t1表示"表别名"
|
T |
JoinOnSupport.fullJoinOn(Table table,
List<Column> columnPairs)
`FULL JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
JoinOnSupport.innerJoinOn(Table table,
List<Column> columnPairs)
`INNER JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
InsertTableSupport.insert(Table table)
`INSERT INTO table1 t1` 语句, t1表示"表别名"
|
T |
JoinOnSupport.joinOn(Table table,
List<Column> columnPairs)
`JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
JoinOnSupport.leftJoinOn(Table table,
List<Column> columnPairs)
`LEFT JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
JoinOnSupport.rightJoinOn(Table table,
List<Column> columnPairs)
`RIGHT JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
UpdateTableSupport.update(Table table)
`UPDATE table1 t1` 语句, t1表示"表别名"
|
Modifier and Type | Method and Description |
---|---|
T |
DeleteSupport.delete(List<Table> tables)
`DELETE t1.*, t2.* ...` 语句, t1, t2表示"表别名"
|
T |
FromSupport.from(List<Table> tables)
`FROM table1 t1, table2 t2...` 语句, t1, t2表示"表别名"
|
T |
InsertTableSupport.insert(List<Table> tables)
`INSERT INTO table1 t1, table2 t2...` 语句, t1, t2表示"表别名"
|
T |
UpdateTableSupport.update(List<Table> tables)
`UPDATE table1 t1, table2 t2...` 语句, t1, t2表示"表别名"
|
Modifier and Type | Method and Description |
---|---|
ListField<Table> |
BaseTableSupportImpl.getTable()
Gets the value of table
|
Modifier and Type | Method and Description |
---|---|
T |
JoinOnSupportImpl.complexFullJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
T |
JoinOnSupportImpl.complexInnerJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
T |
JoinOnSupportImpl.complexLeftJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
T |
JoinOnSupportImpl.complexRightJoinOn(Table table,
List<CriteriaItem> criteriaItems) |
T |
DeleteSupportImpl.delete(Table table) |
T |
FromSupportImpl.from(Table table) |
T |
JoinOnSupportImpl.fullJoinOn(Table table,
List<Column> columnPairs) |
T |
JoinOnSupportImpl.innerJoinOn(Table table,
List<Column> columnPairs) |
T |
InsertTableSupportImpl.insert(Table table) |
T |
JoinOnSupportImpl.joinOn(Table table,
List<Column> columnPairs) |
T |
JoinOnSupportImpl.leftJoinOn(Table table,
List<Column> columnPairs) |
T |
JoinOnSupportImpl.rightJoinOn(Table table,
List<Column> columnPairs) |
T |
UpdateTableSupportImpl.update(Table table) |
Modifier and Type | Method and Description |
---|---|
T |
DeleteSupportImpl.delete(List<Table> tables) |
T |
FromSupportImpl.from(List<Table> tables) |
T |
InsertTableSupportImpl.insert(List<Table> tables) |
T |
UpdateTableSupportImpl.update(List<Table> tables) |
Copyright © 2020 IBIT程序猿. All rights reserved.