public interface CreateIndexWhereStep extends CreateIndexFinalStep
Query
that can create indexes.
XYZ*Step
types directly from client code
It is usually not recommended to reference any XYZ*Step
types
directly from client code, or assign them to local variables. When writing
dynamic SQL, creating a statement's components dynamically, and passing them
to the DSL API statically is usually a better choice. See the manual's
section about dynamic SQL for details: https://www.jooq.org/doc/latest/manual/sql-building/dynamic-sql.
Drawbacks of referencing the XYZ*Step
types directly:
Modifier and Type | Method and Description |
---|---|
CreateIndexFinalStep |
where(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(Condition condition)
Add a
WHERE clause to create a partial index, connecting
them with each other with Operator.AND . |
CreateIndexFinalStep |
where(Field<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(String sql)
Add a
WHERE clause to create a partial index. |
CreateIndexFinalStep |
where(String sql,
Object... bindings)
Add a
WHERE clause to create a partial index. |
CreateIndexFinalStep |
where(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={AURORA_POSTGRES,POSTGRES,SQLSERVER}) CreateIndexFinalStep where(Condition condition)
WHERE
clause to create a partial index, connecting
them with each other with Operator.AND
.@Support(value={AURORA_POSTGRES,POSTGRES,SQLSERVER}) CreateIndexFinalStep where(Condition... conditions)
WHERE
clause to create a partial index, connecting
them with each other with Operator.AND
.@Support(value={AURORA_POSTGRES,POSTGRES,SQLSERVER}) CreateIndexFinalStep where(Collection<? extends Condition> conditions)
WHERE
clause to create a partial index, connecting
them with each other with Operator.AND
.@Support(value={AURORA_POSTGRES,POSTGRES,SQLSERVER}) CreateIndexFinalStep where(Field<Boolean> field)
WHERE
clause to create a partial index.@Support(value={AURORA_POSTGRES,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={AURORA_POSTGRES,POSTGRES,SQLSERVER}) @PlainSQL CreateIndexFinalStep where(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={AURORA_POSTGRES,POSTGRES,SQLSERVER}) @PlainSQL CreateIndexFinalStep where(String sql, 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={AURORA_POSTGRES,POSTGRES,SQLSERVER}) @PlainSQL CreateIndexFinalStep where(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 © 2019. All rights reserved.