DeleteStatement
constructor(targetsSet: ColumnSet, where: Op<Boolean>? = null, isIgnore: Boolean = false, limit: Int? = null, targetTables: List<Table> = emptyList())
Parameters
where
Condition that determines which rows to delete.
isIgnore
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.
targetTables
List of specific tables from targetsSet to delete rows from.
Deprecated
This constructor will be removed in future releases.
Replace with
DeleteStatement(targetsSet = table, where, isIgnore, limit, emptyList())
Content copied to clipboard