docs/api/exposed-r2dbc/org.jetbrains.exposed.v1.r2dbc/delete.html
suspend fun Join.delete(targetTable: Table, vararg targetTables: Table, ignore: Boolean = false, limit: Int? = null, where: () -> Op<Boolean>): Int
Represents the SQL statement that deletes rows from a table in a join relation.
The number of deleted rows.
targetTable
The specific table from this join relation to delete rows from.
targetTables
(Optional) Other tables from this join relation to delete rows from. Note Targeting multiple tables for deletion is not supported by all vendors. Please check the documentation.
ignore
Whether to ignore any possible errors that occur when deleting rows. Note ignore is not supported by all vendors. Please check the documentation.
limit
Maximum number of rows to delete. Note limit is not supported by all vendors. Please check the documentation.
where
Condition that determines which rows to delete.
org.jetbrains.exposed.v1.r2dbc.sql.tests.shared.dml.DeleteTests.testDeleteWithSingleJoin
suspend fun Join.delete(targetTable: Table, vararg targetTables: Table, ignore: Boolean = false, limit: Int? = null): Int
Represents the SQL statement that deletes all rows from a table in a join relation.
The number of deleted rows.
targetTable
The specific table from this join relation to delete rows from.
targetTables
(Optional) Other tables from this join relation to delete rows from. Note Targeting multiple tables for deletion is not supported by all vendors. Please check the documentation.
ignore
Whether to ignore any possible errors that occur when deleting rows. Note ignore is not supported by all vendors. Please check the documentation.
limit
Maximum number of rows to delete. Note limit is not supported by all vendors. Please check the documentation.
org.jetbrains.exposed.v1.r2dbc.sql.tests.shared.dml.DeleteTests.testDeleteWithSingleJoin
Generated by Dokka © 2026 Copyright