public interface MergeNotMatchedSetStep<R extends Record>
Merge
's DSL API.
Example:
DSLContext create = DSL.using(configuration);
create.mergeInto(table)
.using(select)
.on(condition)
.whenMatchedThenUpdate()
.set(field1, value1)
.set(field2, value2)
.whenNotMatchedThenInsert(field1, field2)
.values(value1, value2)
.execute();
Modifier and Type | Method and Description |
---|---|
<T> MergeNotMatchedSetMoreStep<R> |
set(Field<T> field,
Field<T> value)
Set values for
INSERT in the MERGE statement's
WHEN NOT MATCHED clause. |
<T> MergeNotMatchedSetMoreStep<R> |
set(Field<T> field,
Select<? extends Record1<T>> value)
Set values for
INSERT in the MERGE statement's
WHEN NOT MATCHED clause. |
<T> MergeNotMatchedSetMoreStep<R> |
set(Field<T> field,
T value)
Set values for
INSERT in the MERGE statement's
WHEN NOT MATCHED clause. |
MergeNotMatchedSetMoreStep<R> |
set(Map<? extends Field<?>,?> map)
Set multiple values for
INSERT in the MERGE
statement's WHEN NOT MATCHED clause. |
MergeNotMatchedSetMoreStep<R> |
set(Record record)
Set multiple values for
INSERT in the MERGE
statement's WHEN NOT MATCHED clause. |
@Support(value={CUBRID,DB2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) <T> MergeNotMatchedSetMoreStep<R> set(Field<T> field, T value)
INSERT
in the MERGE
statement's
WHEN NOT MATCHED
clause.@Support(value={CUBRID,DB2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) <T> MergeNotMatchedSetMoreStep<R> set(Field<T> field, Field<T> value)
INSERT
in the MERGE
statement's
WHEN NOT MATCHED clause.
@Support(value={CUBRID,DB2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) <T> MergeNotMatchedSetMoreStep<R> set(Field<T> field, Select<? extends Record1<T>> value)
INSERT
in the MERGE
statement's
WHEN NOT MATCHED clause.
@Support(value={CUBRID,DB2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) MergeNotMatchedSetMoreStep<R> set(Map<? extends Field<?>,?> map)
INSERT
in the MERGE
statement's WHEN NOT MATCHED
clause.
Values can either be of type <T>
or
Field<T>
. jOOQ will attempt to convert values to their
corresponding field's type.
@Support(value={CUBRID,DB2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) MergeNotMatchedSetMoreStep<R> set(Record record)
INSERT
in the MERGE
statement's WHEN NOT MATCHED
clause.
This is the same as calling set(Map)
with the argument record
treated as a Map
.
set(Map)
Copyright © 2014. All Rights Reserved.