This article is tagged with:
Sql delete where in
and mysql
sql delete where in
-- Deletes all records where `columnName` matches the values in brackets.
DELETE FROM tableName WHERE columnName IN ('val1', 'val2', 'val3');
delete sql
DELETE FROM table_name WHERE condition;