@Generated(value="This class was generated using jOOQ-tools") public interface MergeNotMatchedValuesStep1<R extends Record,T1>
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 | 
|---|---|
| MergeNotMatchedWhereStep<R> | values(Collection<?> values)Set  VALUESforINSERTin theMERGEstatement'sWHEN NOT MATCHED THEN INSERTclause. | 
| MergeNotMatchedWhereStep<R> | values(Field<T1> value1)Set  VALUESforINSERTin theMERGEstatement'sWHEN NOT MATCHED THEN INSERTclause. | 
| MergeNotMatchedWhereStep<R> | values(T1 value1)Set  VALUESforINSERTin theMERGEstatement'sWHEN NOT MATCHED THEN INSERTclause. | 
@Support(value={CUBRID,DB2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) MergeNotMatchedWhereStep<R> values(T1 value1)
VALUES for INSERT in the MERGE
 statement's WHEN NOT MATCHED THEN INSERT clause.@Support(value={CUBRID,DB2,HSQLDB,ORACLE,SQLSERVER,SYBASE}) MergeNotMatchedWhereStep<R> values(Field<T1> value1)
VALUES for INSERT in the MERGE
 statement's WHEN NOT MATCHED THEN INSERT clause.Copyright © 2016. All Rights Reserved.