05.11.2015, 13:36
http://www.tutorialspoint.com/sql/sql-like-clause.htm
used to compare a value to similar values just like strcmp
but with LIKE % i can find ip's starting with 127.0 only example
used to compare a value to similar values just like strcmp
pawn Code:
` WHERE `ip` LIKE '127.0.0.1'
pawn Code:
SELECT * FROM `banz` WHERE `ip` LIKE '%127.0%'