Let me describe some background first. We have a table that contains all of our products, and a table that contains a list of 'product tags' (material/size/type), and a table that contains a list of the tags assigned to a product ('tag_id' => 1 (material), 'value' => 'gold', 'product' => 123)
I'm trying to use a query similar to this to filter out certain products, but it doesn't seem to work. Can anybody provide some pointers in the right direction?
SELECT DISTINCT `products`.* FROM `products`,`product_assigned_tags`
LEFT JOIN `product_assigned_tags` AS tags_0 ON tags_0.`tag_id` = 1
LEFT JOIN `product_assigned_tags` AS tags_1 ON tags_1.`tag_id` = 2
WHERE (
((tags_0.`value` = 'silver' ) AND (tags_0.`value` != 'gold' ) ) AND
((tags_1.`value` = 'small' ) AND (tags_1.`value` != 'large' ) )
) AND (`products`.`type` = '2' OR `products`.`type` = '1' ) LIMIT 0, 30