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
Run a SQL statement and substitute for the IP address you want to search for:
SELECT * FROM users WHERE IP = '172.0.0.1'