Описание тега sql-delete
The SQL DELETE statement allows you to delete a single row or multiple rows from a SQL table.
The DELETE
statement removes one or more rows from a table. A subset may be defined for deletion using a condition, otherwise all rows are removed. Some DBMSs, like MySQL, allow to delete rows from multiple tables with one DELETE
statement (this is sometimes called multi-table DELETE).
Use this tag instead of delete which is too broad.
Reference