Jump to content

SQL Where Statement


jason360

Recommended Posts

Hey guys,

 

I am not sure how to phrase this WHERE statement.

 

I currently have this:

WHERE approved = "1" AND item_gender="1" OR item_gender="3"

It seems to be omitting the 'approved' part.  What I require is that approved=1 must be adhered to regardless, but item_gender can be equal to 1 or 3.

 

 

Any ideas what I am doing wrong?

 

Thanks!

Link to comment
Share on other sites

Use (..) to ensure the logic you really want

WHERE approved = "1" AND (item_gender="1" OR item_gender="3")

otherwise the logic defaults to

WHERE (approved = "1" AND item_gender="1") OR item_gender="3"

Alternatively, use IN instead of multiple ORs

WHERE approved = "1" AND item_gender IN (1, 3)
Edited by Barand
  • Like 1
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.