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