UpdateStatementBuilder

DSL builder for update statements.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
fun <C : Any> set(column: Column<C>, value: C?)

Assign the specific column to a value.

fun <C : Any> set(column: Column<C>, expr: ColumnDeclaring<C>)

Assign the specific column's value to another column or an expression's result.

Link copied to clipboard
fun where(block: () -> ColumnDeclaring<Boolean>)

Specify the where clause for this update statement.