query help - 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)
+--- Thread: query help (
/showthread.php?tid=603396)
query help -
Mrcroissant - 22.03.2016
hello, this query doesn't work, can you please help me
I want that those two conditions are verified not OR
Код:
SELECT * FROM `DATABASE` WHERE `TEST1` = '%s' AND WHERE `TEST2` = '0' ORDER BY `DATE`
Cheers!
Re: query help -
Misiur - 22.03.2016
You only need one `where` clause, so :
Код:
SELECT * FROM `DATABASE` WHERE `TEST1` = '%s' AND `TEST2` = '0' ORDER BY `DATE`
Re: query help -
Mrcroissant - 22.03.2016
thank you !