05.11.2015, 13:10
is there a way of using Like % operator via samp query ?
this is what im talking about
this is what im talking about
` WHERE `ip` LIKE '127.0.0.1'
SELECT * FROM `banz` WHERE `ip` LIKE '%127.0%'
Yes, you can. Insert % twice like "%%" to format a % symbol. Check "Format Specifiers" - https://sampwiki.blast.hk/wiki/Format
|
... WHERE ip BETWEEN INET_ATON('172.16.0.0') AND INET_ATON('172.31.255.255');