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
Subinterfaces of MergeMatchedDeleteStep in org.jooq Modifier and Type Interface Description interface
MergeMatchedSetMoreStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeMatchedWhereStep<R extends Record>
This type is used for theMerge
's DSL API.Methods in org.jooq that return MergeMatchedDeleteStep Modifier and Type Method Description MergeMatchedDeleteStep<R>
MergeMatchedWhereStep. where(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<Boolean> condition)
Add an additionalWHERE
clause to the precedingWHEN MATCHED THEN UPDATE
clause.
-