Delete many rows from a table using id in Mysql

前端 未结 9 1903
遇见更好的自我
遇见更好的自我 2021-01-30 15:38

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,

9条回答
  •  旧巷少年郎
    2021-01-30 16:34

    Others have suggested IN, this is fine. You can also use a range:

    DELETE from tablename where id<254 and id>3;
    

    If the ids to delete are contiguous.

提交回复
热议问题