SQL Eliminar donde X o Y o Z
DELETE FROM your_table
WHERE id IN (x, y, z);
Erwan H Dev
DELETE FROM your_table
WHERE id IN (x, y, z);