public interface UpdateOrderByStep<R extends Record> extends UpdateLimitStep<R>
Update
's DSL API.
Example:
DSLContext create = DSL.using(configuration);
create.update(table)
.set(field1, value1)
.set(field2, value2)
.where(field1.greaterThan(100))
.execute();
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 |
---|---|
UpdateLimitStep<R> |
orderBy(Collection<? extends OrderField<?>> fields)
Add an
ORDER BY clause to the query. |
UpdateLimitStep<R> |
orderBy(int... fieldIndexes)
Add an
ORDER BY clause to the query. |
UpdateLimitStep<R> |
orderBy(OrderField<?>... fields)
Add an
ORDER BY clause to the query. |
limit, limit
returning, returning, returning, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult
bind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, poolable, queryTimeout
attach, configuration, detach
@Support UpdateLimitStep<R> orderBy(OrderField<?>... fields)
ORDER BY
clause to the query.@Support UpdateLimitStep<R> orderBy(Collection<? extends OrderField<?>> fields)
ORDER BY
clause to the query.@Support UpdateLimitStep<R> orderBy(int... fieldIndexes)
ORDER BY
clause to the query.
Indexes start at 1
in SQL!
Note, you can use orderBy(DSL.val(1).desc())
or
orderBy(DSL.literal(1).desc())
to apply descending
ordering
Copyright © 2020. All rights reserved.