vote up 0 vote down star

Say I have a table that includes column A, column B and column C. How do I write I query that selects all rows where either column A OR column B OR column C equals a certain value? Thanks.

Update: I think forgot to mention my confusion. Say there is another column (column 1) and I need to select based on the following logic:

...where Column1 = '..' AND (ColumnA='..' OR ColumnB='..' OR ColumnC='..')

Is it valid to group statements as I did above with parenthesis to get the desired logic?

flag
To answer your edit, yes parentheses will enforce grouping. – EBGreen Aug 21 at 20:53
Yes, parenthesis are valid. – Degan Aug 21 at 20:53
based on your update, if you want it to work properly you MUST use parentheses – KM Aug 21 at 21:00

4 Answers

vote up 3 vote down check

Unless I'm missing something here...

SELECT * FROM MYTABLE WHERE COLUMNA=MyValue OR COLUMNB=MyValue OR COLUMNC=MyValue
link|flag
vote up 2 vote down
SELECT *
FROM myTable
WHERE (Column1 = MyOtherValue) AND
      ((ColumnA = MyValue) OR (ColumnB = MyValue) OR (ColumnC = MyValue))
link|flag
vote up 2 vote down

I prefer this way as its neater

select *
from mytable
where
myvalue in (ColumnA, ColumnB, ColumnC)
link|flag
vote up 2 vote down

Yes, it's valid to use parentheses. However, if you're searching multiple columns for the same value, you may want to consider normalizing the database.

link|flag
+1, I completely missed that! ColumnA-ColumnB-ColumnC threw me off, if it were emailA-EmailB-EmailC it would have been more obvious – KM Aug 21 at 21:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.