Jump to content

[SOLVED] Multiple 'AND' Conditions


Omzy

Recommended Posts

Can this be simplified at all?

 

SELECT * FROM customers WHERE category=cat1 AND category=cat2 AND category=cat3 AND category=cat4 AND category=cat5

 

This can just go on and on, so it would be ideal if there was a shorthand version.

 

Thanks!

Link to comment
Share on other sites

Hi

 

Can't see how that would work, as a field cannot have multiple values on the same row.

 

However assuming you mean OR instead of AND (and also that category us a numeric field).

 

SELECT * FROM customers WHERE category IN (cat1,cat2,cat3,cat4,cat5)

 

All the best

 

Keith

Link to comment
Share on other sites

Thanks mate, yes I think I need to use OR instead of AND.

 

Cheers!

 

Yes, you definitely need to.  It's illogical that 'category' could equal 5 different exact values at the same time.

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.