SQL Exclua onde x ou y ou z
DELETE FROM your_table
WHERE id IN (x, y, z);
Erwan H Dev
DELETE FROM your_table
WHERE id IN (x, y, z);