C
chris.withers
Hi all,
I'm attempting to do something like the following SQL query:
SELECT * FROM `users` WHERE idusers != 3 | 2;
such as:
= "idusers <> 3OR 2";
But I get an error stating:
Cannot perform 'Or' operation on System.Int32 and System.Int32.
How can I use a range of values in such a statement as this? Any help
would be greatly appreciated.
Chris
I'm attempting to do something like the following SQL query:
SELECT * FROM `users` WHERE idusers != 3 | 2;
such as:
= "idusers <> 3OR 2";
But I get an error stating:
Cannot perform 'Or' operation on System.Int32 and System.Int32.
How can I use a range of values in such a statement as this? Any help
would be greatly appreciated.
Chris