Ok so the query is really simple:
SELECT a, b, c FROM d WHERE a = ('x' OR 'y' OR 'z');
And that query works great, but if I were to query say, this:
SELECT a, b, c FROM d WHERE a = ('x' OR 'y' OR 'z' OR 'x1');
No rows would be returned because of the number in ‘x1’.
I’m using mysql 5.5.9, and I’m running a virtual server on my mac using MAMP (if it matters)
Thanks for the help guys!
Try these
OR