I am a Linux admin with only basic knowledge in Mysql Queries
I want to delete many table entries which are ip address from my table using id,
how about using IN
IN
DELETE FROM tableName WHERE ID IN (1,2) -- add as many ID as you want.