deleteWhere

open fun <T : Table> T.deleteWhere(limit: Int? = null, op: T.(ISqlExpressionBuilder) -> Op<Boolean>): DeleteStatement

Represents the SQL statement that deletes only rows in a table that match the provided op.

Return

A DeleteStatement that can be executed.

Parameters

limit

Maximum number of rows to delete.

op

Condition that determines which rows to delete.