Jump to content

[SOLVED] Like/Or/And statement that almost works - Need help


leafer

Recommended Posts

Here's the statement that doesn't entirely work the way it should:

 

$query = "SELECT name FROM thedatabase ";

$query .= "WHERE position LIKE '%$position1%' OR position LIKE '%$position2%' OR position LIKE '%$position3%' ";

$query .= "OR position LIKE '%$position4%' AND league = '$league' ORDER BY rank ASC LIMIT 5";

 

Now within my code I have a broad statement which doesn't use the "AND league = '$league'" part and it works perfectly. Once I include the and league part it's almost as if the statement isn't even there. With and without that portion the result is the same.

 

Basically what I'm trying to accomplish with this statement is:

 

If any of the positions exist BUT contain StringX within the league column then return ORDER BY rank ASC LIMIT 5.

 

It seems as if it's treating that AND statement as an OR and once it finds a match ignores the rest.

 

Any ideas?

 

Precedence! (is that spelled right?)

 

wrap all the OR's in parenthesis so if ANY one is true AND the league is true ...

 

WHERE ( position LIKE '%$position1%' OR position LIKE '%$position2%' 
OR position LIKE '%$position3%' OR position LIKE '%$position4%' ) 
AND league = '$league' 

 

otherwise the AND is attached to the last position condition (#4) so it is acting like this:

WHERE position LIKE '%$position1%' OR position LIKE '%$position2%' OR position LIKE '%$position3%' 
OR ( position LIKE '%$position4%' AND league = '$league' ) 

Precedence! (is that spelled right?)

 

wrap all the OR's in parenthesis so if ANY one is true AND the league is true ...

 

WHERE ( position LIKE '%$position1%' OR position LIKE '%$position2%' 
OR position LIKE '%$position3%' OR position LIKE '%$position4%' ) 
AND league = '$league' 

 

otherwise the AND is attached to the last position condition (#4) so it is acting like this:

WHERE position LIKE '%$position1%' OR position LIKE '%$position2%' OR position LIKE '%$position3%' 
OR ( position LIKE '%$position4%' AND league = '$league' ) 

 

Excellent Dave. It works perfectly.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.