public interface JoinOnSupport<T>
Modifier and Type | Method and Description |
---|---|
T |
complexFullJoinOn(Table table,
List<CriteriaItem> criteriaItems)
`FULL JOIN table t1 on t1.column1=t0.column2, t1.column3=t0.column4 AND t1.column5=?`语句
|
T |
complexInnerJoinOn(Table table,
List<CriteriaItem> criteriaItems)
`INNER JOIN table t1 on t1.column1=t0.column2, t1.column3=t0.column4 AND t1.column5=?`语句
|
T |
complexLeftJoinOn(Table table,
List<CriteriaItem> criteriaItems)
`LEFT JOIN table t1 on t1.column1=t0.column2, t1.column3=t0.column4 AND t1.column5=?`语句
|
T |
complexRightJoinOn(Table table,
List<CriteriaItem> criteriaItems)
`RIGHT JOIN table t1 on t1.column1=t0.column2, t1.column3=t0.column4 AND t1.column5=?`语句
|
T |
fullJoinOn(Table table,
List<Column> columnPairs)
`FULL JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
innerJoinOn(Table table,
List<Column> columnPairs)
`INNER JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
joinOn(JoinOn joinOn)
JoinOn操作
|
T |
joinOn(List<JoinOn> joinOns)
JoinOn操作
|
T |
joinOn(Table table,
List<Column> columnPairs)
`JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
leftJoinOn(Table table,
List<Column> columnPairs)
`LEFT JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T |
rightJoinOn(Table table,
List<Column> columnPairs)
`RIGHT JOIN table t1 ON t1.column1=t0.column2, t1.column3=t0.column4`语句
|
T joinOn(Table table, List<Column> columnPairs)
table
- 需要join的表对象columnPairs
- on相关的"列-对"Column
T leftJoinOn(Table table, List<Column> columnPairs)
table
- 需要join的表对象columnPairs
- DbColumn pairsColumn
T rightJoinOn(Table table, List<Column> columnPairs)
table
- 需要join的表对象columnPairs
- DbColumn pairsColumn
T fullJoinOn(Table table, List<Column> columnPairs)
table
- 需要join的表对象columnPairs
- DbColumn pairsColumn
T innerJoinOn(Table table, List<Column> columnPairs)
table
- 需要join的表对象columnPairs
- DbColumn pairsColumn
T complexLeftJoinOn(Table table, List<CriteriaItem> criteriaItems)
table
- 需要join的表对象criteriaItems
- 条件T complexRightJoinOn(Table table, List<CriteriaItem> criteriaItems)
table
- 需要join的表对象criteriaItems
- 条件T complexFullJoinOn(Table table, List<CriteriaItem> criteriaItems)
table
- 需要join的表对象criteriaItems
- 条件T complexInnerJoinOn(Table table, List<CriteriaItem> criteriaItems)
table
- 需要join的表对象criteriaItems
- 条件Copyright © 2020 IBIT程序猿. All rights reserved.