SQL Supprimer où x ou y ou z

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