i am wondering if their is a better way of doing something like this:
SELECT *
FROM tableA
WHERE colour='red' OR colour='greed' OR colour='blue' OR colour='yellow'
is their anything like this:
SELECT *
FROM tableA
WHERE colour='red''greed''yellow'
cheers in advance