public interface InsertOnConflictWhereStep<R extends Record> extends InsertReturningStep<R>
Insert
's DSL API.
Example:
DSLContext create = DSL.using(configuration);
create.insertInto(table, field1, field2)
.values(value1, value2)
.values(value3, value4)
.onDuplicateKeyUpdate()
.set(field1, value1)
.set(field2, value2)
.execute();
Modifier and Type | Method and Description |
---|---|
InsertReturningStep<R> |
where(java.util.Collection<? extends Condition> conditions)
Add a
WHERE clause to the query, connecting them with each
other with Operator.AND . |
InsertReturningStep<R> |
where(Condition... conditions)
Add a
WHERE clause to the query, connecting them with each
other with Operator.AND . |
InsertReturningStep<R> |
where(Field<java.lang.Boolean> field)
Add a
WHERE clause to the query. |
InsertReturningStep<R> |
where(SQL sql)
Add a
WHERE clause to the query. |
InsertReturningStep<R> |
where(java.lang.String sql)
Add a
WHERE clause to the query. |
InsertReturningStep<R> |
where(java.lang.String sql,
java.lang.Object... bindings)
Add a
WHERE clause to the query. |
InsertReturningStep<R> |
where(java.lang.String sql,
QueryPart... parts)
Add a
WHERE clause to the query. |
InsertReturningStep<R> |
whereExists(Select<?> select)
Add a
WHERE EXISTS clause to the query. |
InsertReturningStep<R> |
whereNotExists(Select<?> select)
Add a
WHERE NOT EXISTS clause to the query. |
returning, returning, returning
bind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, queryTimeout
attach, configuration, detach
@Support(value=POSTGRES_9_5) InsertReturningStep<R> where(Condition... conditions)
WHERE
clause to the query, connecting them with each
other with Operator.AND
.@Support(value=POSTGRES_9_5) InsertReturningStep<R> where(java.util.Collection<? extends Condition> conditions)
WHERE
clause to the query, connecting them with each
other with Operator.AND
.@Support(value=POSTGRES_9_5) InsertReturningStep<R> where(Field<java.lang.Boolean> field)
WHERE
clause to the query.@Support(value=POSTGRES_9_5) @PlainSQL InsertReturningStep<R> where(SQL sql)
WHERE
clause to the query.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(SQL)
,
SQL
@Support(value=POSTGRES_9_5) @PlainSQL InsertReturningStep<R> where(java.lang.String sql)
WHERE
clause to the query.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String)
,
SQL
@Support(value=POSTGRES_9_5) @PlainSQL InsertReturningStep<R> where(java.lang.String sql, java.lang.Object... bindings)
WHERE
clause to the query.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
@Support(value=POSTGRES_9_5) @PlainSQL InsertReturningStep<R> where(java.lang.String sql, QueryPart... parts)
WHERE
clause to the query.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
@Support(value=POSTGRES_9_5) InsertReturningStep<R> whereExists(Select<?> select)
WHERE EXISTS
clause to the query.@Support(value=POSTGRES_9_5) InsertReturningStep<R> whereNotExists(Select<?> select)
WHERE NOT EXISTS
clause to the query.Copyright © 2018. All Rights Reserved.