public interface CreateIndexWhereStep extends CreateIndexFinalStep
Query
that can create indexes.Modifier and Type | Method and Description |
---|---|
CreateIndexFinalStep |
where(java.util.Collection<? extends Condition> conditions)
Add a
WHERE clause to create a partial index, connecting
them with each other with Operator.AND . |
CreateIndexFinalStep |
where(Condition... conditions)
Add a
WHERE clause to create a partial index, connecting
them with each other with Operator.AND . |
CreateIndexFinalStep |
where(Field<java.lang.Boolean> field)
Add a
WHERE clause to create a partial index. |
CreateIndexFinalStep |
where(SQL sql)
Add a
WHERE clause to create a partial index. |
CreateIndexFinalStep |
where(java.lang.String sql)
Add a
WHERE clause to create a partial index. |
CreateIndexFinalStep |
where(java.lang.String sql,
java.lang.Object... bindings)
Add a
WHERE clause to create a partial index. |
CreateIndexFinalStep |
where(java.lang.String sql,
QueryPart... parts)
Add a
WHERE clause to create a partial index. |
bind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, queryTimeout
attach, configuration, detach
@Support(value={POSTGRES,SQLSERVER}) CreateIndexFinalStep where(Condition... conditions)
WHERE
clause to create a partial index, connecting
them with each other with Operator.AND
.@Support(value={POSTGRES,SQLSERVER}) CreateIndexFinalStep where(java.util.Collection<? extends Condition> conditions)
WHERE
clause to create a partial index, connecting
them with each other with Operator.AND
.@Support(value={POSTGRES,SQLSERVER}) CreateIndexFinalStep where(Field<java.lang.Boolean> field)
WHERE
clause to create a partial index.@Support(value={POSTGRES,SQLSERVER}) @PlainSQL CreateIndexFinalStep where(SQL sql)
WHERE
clause to create a partial index.
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,SQLSERVER}) @PlainSQL CreateIndexFinalStep where(java.lang.String sql)
WHERE
clause to create a partial index.
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,SQLSERVER}) @PlainSQL CreateIndexFinalStep where(java.lang.String sql, java.lang.Object... bindings)
WHERE
clause to create a partial index.
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,SQLSERVER}) @PlainSQL CreateIndexFinalStep where(java.lang.String sql, QueryPart... parts)
WHERE
clause to create a partial index.
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!
Copyright © 2018. All Rights Reserved.