UpdateStatement
open class UpdateStatement(val targetsSet: ColumnSet, val limit: Int?, val where: Op<Boolean>? = null) : UpdateBuilder<Int>
Represents the SQL statement that updates rows of a table.
Parameters
limit
Maximum number of rows to update.
where
Condition that determines which rows to update.
Inheritors
Properties
Functions
Link copied to clipboard
Returns the string representation of an SQL statement.
Link copied to clipboard
Updates the mapping of the specified column with the value of the provided expression.