is there an easy way to do multiple AND statments like the IN clause does for OR?
|
feedback
|
|
Is not possible in general, The exception case is | |||
|
feedback
|
|
You wish to use the ALL keyword? | |||
feedback
|
|
This is a common enough question on Stack Overflow that I'm creating a new tag for it, Based on your brief description, I assume you mean you want to return a group of rows that match all of a set of values, for example articles that are tagged (php, mysql, performance). The There are two popular solutions for this problem. The first is to count how many distinct tags in the group of rows, and if it's equal to the list of tags you're looking to match, then this passes the test.
The other solution is to self-join as many times as the number of tags you're looking for. By using INNER JOIN, you restrict the result set to only those groups that match.
Which solution is better can depend on the number of tags you want to match, how convenient it is to build this query in your application, and also specific optimizations that your brand of RDBMS is good at. The latter solution is usually much faster in MySQL, for example, because MySQL tends to write temp tables for GROUP BY queries. But you should test both query types in your database to make sure. | ||||
feedback
|
AND. – Michael Dec 9 '11 at 19:35NOT IN ()is technically a string ofANDoperations, rather thanORoperations... – Michael Dec 9 '11 at 19:36