Jump to content

Separating statements with WHERE (mysql)


david.h

Recommended Posts

Hey guys.

 

I'm coding a search function, the problem with it is that i want to search for multiply categories.

 

Code at the moment:

SELECT * FROM $tablename WHERE text LIKE '%$search%' or tags LIKE '%$search%' or title LIKE '%$search%'

 

The problem is that if i change it to (to make it include the categories in the search):

SELECT * FROM $tablename WHERE text LIKE '%$search%' or tags LIKE '%$search%' or title LIKE '%$search%' and cat=$cat1 or cat=$cat2

 

it wont work due to the "or" between cat=$cat1 and cat=$cat2.

 

Is there any way to do like in the if statement in PHP.

ex:

 

if ((($something == 1) && ($somethingelse == 2)) or ($somethingelse2 == 3))

 

I want to do something like that, separating the if statement so that both $something and $somethingelse has to be true, or $somethingelse2.

 

but in mysql i can only do:

 

if (($something == 1) && ($somethingelse == 2) or ($somethingelse2 == 3))

 

and that's a totally diffrent thing...

 

Sorry, i could'nt figure out a better way of explaining this.

 

Thanks in advance.

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.