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,
Others have suggested IN, this is fine. You can also use a range:
IN
DELETE from tablename where id<254 and id>3;
If the ids to delete are contiguous.