Uses of Interface
org.jooq.MergeMatchedDeleteStep
-
Packages that use MergeMatchedDeleteStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of MergeMatchedDeleteStep in org.jooq
Methods in org.jooq that return MergeMatchedDeleteStep Modifier and Type Method Description MergeMatchedDeleteStep<R>
MergeMatchedWhereStep. where(java.lang.Boolean condition)
Deprecated.- 3.8.0 - [#4763] - UseMergeMatchedWhereStep.where(Condition)
(typically withDSL.trueCondition()
,DSL.falseCondition()
, orDSL.noCondition()
as the parameter) orMergeMatchedWhereStep.where(Field)
instead.MergeMatchedDeleteStep<R>
MergeMatchedWhereStep. where(Condition condition)
Add an additionalWHERE
clause to the precedingWHEN MATCHED THEN UPDATE
clause.MergeMatchedDeleteStep<R>
MergeMatchedWhereStep. where(Field<java.lang.Boolean> condition)
Add an additionalWHERE
clause to the precedingWHEN MATCHED THEN UPDATE
clause.
-