Search PHPMYADMIN Database for similar entrys

前端 未结 3 1965
长情又很酷
长情又很酷 2021-01-17 00:23

So i have database with a table called users.. and in that table there is a column named IP and i want to find users with the same IP and ban them.. So how can a search the

3条回答
  •  不思量自难忘°
    2021-01-17 01:15

    Run a SQL statement and substitute for the IP address you want to search for:

    SELECT * FROM users WHERE IP = '172.0.0.1'
    

提交回复
热议问题