Delete Statement
open class DeleteStatement(val targetsSet: ColumnSet, val where: Op<Boolean>? = null, val isIgnore: Boolean = false, val limit: Int? = null, val targetTables: List<Table> = emptyList()) : Statement<Int>
Represents the SQL statement that deletes one or more rows of a table.
Parameters
where
Condition that determines which rows to delete.
is Ignore
Whether to ignore errors or not. Note isIgnore is not supported by all vendors. Please check the documentation.
limit
Maximum number of rows to delete.
target Tables
List of specific tables from targetsSet to delete rows from.