<T1,T2,T3> void |
UpdateQuery.addValues(Row3<T1,T2,T3> row,
Row3<T1,T2,T3> value) |
Specify a multi-column set clause for the UPDATE statement.
|
<T1,T2,T3> void |
UpdateQuery.addValues(Row3<T1,T2,T3> row,
Select<? extends Record3<T1,T2,T3>> select) |
Specify a multi-column set clause for the UPDATE statement.
|
Condition |
BetweenAndStep3.and(Row3<T1,T2,T3> maxValue) |
Create a condition to check this field against some bounds
|
BetweenAndStep3<T1,T2,T3> |
Row3.between(Row3<T1,T2,T3> minValue) |
Check if this row value expression is within a range of two other row
value expressions.
|
Condition |
Row3.between(Row3<T1,T2,T3> minValue,
Row3<T1,T2,T3> maxValue) |
Check if this row value expression is within a range of two other row
value expressions.
|
BetweenAndStep3<T1,T2,T3> |
Row3.betweenSymmetric(Row3<T1,T2,T3> minValue) |
Check if this row value expression is within a symmetric range of two
other row value expressions.
|
Condition |
Row3.betweenSymmetric(Row3<T1,T2,T3> minValue,
Row3<T1,T2,T3> maxValue) |
Check if this row value expression is within a symmetric range of two
other row value expressions.
|
Condition |
Row3.compare(Comparator comparator,
Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression
using a dynamic comparator.
|
Condition |
Row3.eq(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
equality.
|
Condition |
Row3.equal(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
equality.
|
Condition |
Row3.ge(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
order.
|
Condition |
Row3.greaterOrEqual(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
order.
|
Condition |
Row3.greaterThan(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
order.
|
Condition |
Row3.gt(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
order.
|
Condition |
Row3.in(Row3<T1,T2,T3>... rows) |
Compare this row value expression with a set of row value expressions for
equality.
|
Condition |
Row3.isDistinctFrom(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
distinctness.
|
Condition |
Row3.isNotDistinctFrom(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
distinctness.
|
Condition |
Row3.le(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
order.
|
Condition |
Row3.lessOrEqual(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
order.
|
Condition |
Row3.lessThan(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
order.
|
Condition |
Row3.lt(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
order.
|
Condition |
Row3.ne(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
non-equality.
|
BetweenAndStep3<T1,T2,T3> |
Row3.notBetween(Row3<T1,T2,T3> minValue) |
Check if this row value expression is not within a range of two other
row value expressions.
|
Condition |
Row3.notBetween(Row3<T1,T2,T3> minValue,
Row3<T1,T2,T3> maxValue) |
Check if this row value expression is not within a range of two other
row value expressions.
|
BetweenAndStep3<T1,T2,T3> |
Row3.notBetweenSymmetric(Row3<T1,T2,T3> minValue) |
Check if this row value expression is not within a symmetric range of two
other row value expressions.
|
Condition |
Row3.notBetweenSymmetric(Row3<T1,T2,T3> minValue,
Row3<T1,T2,T3> maxValue) |
Check if this row value expression is not within a symmetric range of two
other row value expressions.
|
Condition |
Row3.notEqual(Row3<T1,T2,T3> row) |
Compare this row value expression with another row value expression for
non-equality.
|
Condition |
Row3.notIn(Row3<T1,T2,T3>... rows) |
Compare this row value expression with a set of row value expressions for
equality.
|
<T1,T2,T3> UpdateFromStep<R> |
UpdateSetFirstStep.set(Row3<T1,T2,T3> row,
Row3<T1,T2,T3> value) |
Specify a multi-column set clause for the UPDATE statement.
|
<T1,T2,T3> UpdateFromStep<R> |
UpdateSetFirstStep.set(Row3<T1,T2,T3> row,
Select<? extends Record3<T1,T2,T3>> select) |
Specify a multi-column set clause for the UPDATE statement.
|