0

如果我有一个嵌套的类别集,如下所示:

Widgets
  Blue
  Red
  Green

我使用关系表将产品引用到这些类别,例如

产品:

id    name
1     Glowing Widget
2     Flying Widget
3     Exploding Widet

关系表:

id    productId    categoryId
1     1            2
2     2            3
3     3            4

有没有什么方法可以创建一个查询来判断一个类别及其子类别引用了多少产品?

4

1 回答 1

1
SELECT COUNT(DISTINCT productId)
FROM categories
JOIN products_to_categories USING (categoryId)
JOIN products USING (productId)
WHERE categories.left >= {left value of category in question}
AND categories.right <= {right value of category in question}
于 2012-10-08T02:43:21.553 回答