I've got a products table, and a features table, and I would like to do a search to find a product that matches a certain criteria.... and for this example the product MUST have all the features specified.
So I may have the following table (ProductFeatureProfile):
ProductID, FeatureID
1,100
1,101
1,102
2,100
2,101
2,103
3,102
3,104
3,106
What I would like to do is use LLBL go get me all the product where:
FeatureID = 100 AND FeatureID = 101 AND FeatureID = 102
Does that make sense? I hope so, I'm now on v2.5 rather than 2.0 mentioned in my footer.
Many thanks
Darren