I know that you can use
WHERE `age` IN ($ages)
to find rows where the column age equals a part of an array.
But what i need to find out is - What if you want to find rows where age is NOT in the array??
thanks
|
I know that you can use
to find rows where the column But what i need to find out is - What if you want to find rows where thanks |
|||
|
You need
|
|||
|
|
WHEREage` NOT IN ($ages)` – skaz Jul 29 '11 at 13:20