How to delete from a table where ID is in a list of IDs? December 26, 2022 by Tarik Your question almost spells the SQL for this: DELETE FROM table WHERE id IN (1, 4, 6, 7)