Uses of Interface
org.jooq.MergeNotMatchedStep
-
Packages that use MergeNotMatchedStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of MergeNotMatchedStep in org.jooq
Subinterfaces of MergeNotMatchedStep in org.jooq Modifier and Type Interface Description interface
MergeMatchedDeleteStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeMatchedSetMoreStep<R extends Record>
This type is used for theMerge
's DSL API.interface
MergeMatchedStep<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.interface
MergeOnConditionStep<R extends Record>
This type is used for theMerge
's DSL API.Methods in org.jooq that return MergeNotMatchedStep Modifier and Type Method Description MergeNotMatchedStep<R>
MergeMatchedDeleteStep. deleteWhere(Boolean condition)
Deprecated.- 3.8.0 - [#4763] - UseMergeMatchedDeleteStep.deleteWhere(Condition)
(typically withDSL.trueCondition()
,DSL.falseCondition()
, orDSL.noCondition()
as the parameter) orMergeMatchedDeleteStep.deleteWhere(Field)
instead.MergeNotMatchedStep<R>
MergeMatchedDeleteStep. deleteWhere(Condition condition)
Add an additionalDELETE WHERE
clause to the precedingWHEN MATCHED THEN UPDATE
clause.MergeNotMatchedStep<R>
MergeMatchedDeleteStep. deleteWhere(Field<Boolean> condition)
Add an additionalDELETE WHERE
clause to the precedingWHEN MATCHED THEN UPDATE
clause.
-