mysql equivalent to '!=' - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: mysql equivalent to '!=' (
/showthread.php?tid=258655)
mysql equivalent to '!=' -
lolumadd_ - 31.05.2011
What syntax is used in MySQL queries to be used as the same as the pawn '!=' or 'anything except'
Thanks
Re: mysql equivalent to '!=' -
woot - 31.05.2011
NOT
f.ex.
Код:
SELECT * FROM `players` WHERE `ClientIP` NOT LIKE '192.168.%'
Re: mysql equivalent to '!=' -
Cameltoe - 31.05.2011
http://dev.mysql.com/doc/refman/5.0/...operators.html
!= can be used aswell.