deleteIgnoreWhere

open fun <T : Table> T.deleteIgnoreWhere(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, while ignoring any possible errors that occur during the process.

Note: DELETE IGNORE is not supported by all vendors. Please check the documentation.

Return

A DeleteStatement that can be executed.

Parameters

limit

Maximum number of rows to delete.

op

Condition that determines which rows to delete.