select özniteliği mysql

1 Cevap filter

Ben orada mysql tablo vardır:

**product (id,name)**
1  Samsung
2  Toshiba
3  Sony

**attribute (id,name,parentid)**
1 Size 0
2 19" 1
3 17" 1
4 15" 1
5 Color 0
6 White 5
7 Black 5
8 Price 0
9 <$100 8
10 $100-$300 8
11 >$300 8

**attribute2product (id,productid,attributeid)**
1 1 2
2 1 6
3 2 2
4 2 7
5 3 3
6 3 7
7 1 9
8 2 9
9 3 10

Ve gibi onları sıraladı:

**Size**
-- 19" (2)
-- 17" (1)
-- 15" (0)

**Color**
-- White (1)
-- Black (2)

**Price**
-- <$100 (1)
-- $100-$300 (1)
-- >$300 (1)

Öznitelik isim listesi ve bu özellik var sayı ürünü saymak için bana mysql sorgu yardımcı olun. EG: seçildikten boyutu 19 "(attribute.id 2)

**Size**
-- 19"

**Color**
-- White (1)
-- Black (1)

**Price**
-- <$100 (1)
-- $100-$300 (1)

Bu (Magento gibi) ... o Productıd diğer özelliği seçin ve öznitelik adı var, şimdi nitelik adı eşya sayısını görüntülemek için >> ProductID seçmek >> attribute2product yanındaki sorgu sorgular

Teşekkürler,

1 Cevap

Ben sorguyu modifiye ettik. Bu sizin güncellemeleri dayalı ne olmalıdır:

SELECT attribute.name AS attributename, COUNT(*) AS numofproducts FROM product 
  INNER JOIN attribute2product ON  attribute2product.productid = product.id
  INNER JOIN attribute ON attribute.id = attribute2product.attributeid
  WHERE product.id IN 
    (
     SELECT p.id FROM product AS p
     INNER JOIN attribute2product AS a2p ON a2p.productid = p.id
     WHERE a2p.attributeid = 2
    )
  GROUP BY attribute.id, attribute.name;

Lütfen Yukarıdaki verilere dayanarak aldım:

  attributename   numofproducts
       19"              2
      White             1
      Black             1
      <$100             2

For multiple attributes (based a more knowledgeable expert Quassnoi's blog article) :
I've removed product table since it's not needed here

SELECT attribute.name AS attributename, COUNT(*) AS numofproducts
FROM attribute2product
  INNER JOIN attribute ON attribute.id = attribute2product.attributeid
  WHERE attribute2product.productid IN (
      SELECT o.productid
      FROM (
        SELECT productid 
        FROM (
          SELECT 2 AS att
          UNION ALL
          SELECT 6 AS att
          ) v
        JOIN attribute2product ON attributeid >= att AND attributeid <= att
        ) o
      GROUP BY o.productid
      HAVING COUNT(*) = 2
      )
  GROUP BY attribute.id, attribute.name

Sırasıyla, 2, 6 19" bakınız ve White. {[(4)] 2} özelliklerini eşleştirmektir. Daha nitelikler iç içe türetilen aşağıdaki tabloya ekleyerek eklenebilir:

          UNION ALL
          SELECT <attributeid> AS att

Sorgudan sonuç beklendiği gibi:

  attributename   numofproducts
       19"              1
      White             1
      <$100             1