deleteIgnoreWhere

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

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

Count of deleted rows.

Parameters

limit

Maximum number of rows to delete.

op

Condition that determines which rows to delete.