DELETE
Complete guide to deleting data in MariaDB. Complete DELETE syntax with WHERE filtering, JOIN operations, CTEs, and safety considerations for production use.
Syntax
Single-table syntax:
DELETE [LOW_PRIORITY] [QUICK] [IGNORE]
FROM tbl_name [[AS] alias] -- alias from MariaDB 11.6
[PARTITION (partition_list)]
[FOR PORTION OF period_name FROM expr1 TO expr2]
[{USE|FORCE|IGNORE} {INDEX|KEY}
[FOR {JOIN|ORDER BY|GROUP BY}]
(index_list)] -- from MariaDB 11.8.1
[WHERE where_condition]
[ORDER BY ...]
[LIMIT row_count]
[RETURNING select_expr
[, select_expr ...]]The AS alias clause is available from MariaDB 11.6. order_by_specification stands in for the abbreviated ORDER BY ... in the source BNF; see ORDER BY for its full form.
Multiple-table syntax:
Or:
Trimming history:
CTE Syntax
non_cte_tableis a table not defined by a CTE (common table expression).expressionis aWHEREclause or aUSING/WHEREclause.Supporting CTEs with
DELETEis an extension of the SQL standard, similar to how MySQL does it.With
DELETE, CTEs are read-only, like other derived tables – you cannot delete rows from tables in the CTE expression.For use cases, see the CTE examples.
Description
LOW_PRIORITY
Wait until all SELECT statement are done before starting the statement. Used with storage engines that uses table locking (MyISAM, Aria etc). See HIGH_PRIORITY and LOW_PRIORITY clauses for details.
QUICK
Signal the storage engine that it should expect that a lot of rows are deleted. The storage engine can do things to speed up the DELETE like ignoring merging of data blocks until all rows are deleted from the block (instead of when a block is half full). This speeds up things at the expanse of lost space in data blocks. At least MyISAM and Aria support this feature.
IGNORE
Don't stop the query even if a not-critical error occurs (like data overflow). See How IGNORE works for a full description.
For the single-table syntax, the DELETE statement deletes rows from tbl_name and returns a count of the number of deleted rows. This count can be obtained by calling the ROW_COUNT() function. TheWHERE clause, if given, specifies the conditions that identify which rows to delete. With no WHERE clause, all rows are deleted. If the ORDER BY clause is specified, the rows are deleted in the order that is specified. The LIMIT clause places a limit on the number of rows that can be deleted.
For the multiple-table syntax, DELETE deletes from each tbl_name the rows that satisfy the conditions. From MariaDB 11.8.1, the multiple-table syntax also accepts ORDER BY and LIMIT; in earlier releases, these clauses could not be used with multiple-table DELETE. A DELETE can also reference tables which are located in different databases; see Identifier Qualifiers for the syntax.
From MariaDB 11.8.1, single-table DELETE accepts index hints (USE INDEX, FORCE INDEX, and IGNORE INDEX) to influence which index the optimizer uses, with the same syntax as in SELECT. See Index Hints: How to Force Query Plans.
where_condition is an expression that evaluates to true for each row to be deleted. It is specified as described in SELECT.
You need the DELETE privilege on a table to delete rows from it. You need only the SELECT privilege for any columns that are only read, such as those named in the WHERE clause. See GRANT.
As stated, a DELETE statement with no WHERE clause deletes all rows. A faster way to do this, when you do not need to know the number of deleted rows, is to use TRUNCATE TABLE. However, within a transaction or if you have a lock on the table,TRUNCATE TABLE cannot be used whereas DELETE can. See TRUNCATE TABLE, and LOCK.
AS
Single-table DELETE statements support aliases. For example:
Single-table DELETE statements do not support aliases.
PARTITION
See Partition Pruning and Selection for details.
FOR PORTION OF
See Application Time Periods - Deletion by Portion.
RETURNING
It is possible to return a result set of the deleted rows for a single table to the client by using the syntax DELETE ... RETURNING select_expr [, select_expr2 ...]]
Any of SQL expression that can be calculated from a single row fields is allowed. Subqueries are allowed. The AS keyword is allowed, so it is possible to use aliases.
The use of aggregate functions is not allowed. RETURNING cannot be used in multi-table DELETE statements.
Same Source and Target Table
It is possible to delete from a table with the same source and target. For example:
DELETE HISTORY
You can use DELETE HISTORY to delete historical information from System-versioned tables.
Examples
ORDER BY and LIMIT
How to use the ORDER BY and LIMIT clauses:
From MariaDB 11.8.1, ORDER BY and LIMIT can also be used with the multiple-table syntax:
How to use the RETURNING clause:
The following statement joins two tables: one is only used to satisfy a WHERE condition, but no row is deleted from it; rows from the other table are deleted, instead.
Deleting from the Same Source and Target
The statement returns:
CTE Single-Table
CTE Multi-Table
See Also
Returning clause (video)
This page is licensed: GPLv2, originally from fill_help_tables.sql
Last updated
Was this helpful?

