sql >> Database >  >> RDS >> Mysql

mysql join tabel query 2 waarden

Er zijn veel manieren om dit op te lossen; het meest eenvoudig zou waarschijnlijk zijn om een ​​paar exists te gebruiken clausules, of voeg je bij de attributes tabel twee keer, maar u kunt ook group by . gebruiken en having clausules om hetzelfde resultaat te bereiken:

-- option 1: using multiple exists clauses
select p.id, p.productname
from Products p
where exists (select 1 from Attributes a where p.ID = a.ProductID and a.AttributeID = 3)
  and exists (select 1 from Attributes a where p.ID = a.ProductID and a.AttributeID = 4);

-- option 2: using multiple joins
select p.id, p.productname
from Products p
join Attributes a3 on p.ID = a3.ProductID
join Attributes a4 on p.ID = a4.ProductID
where a3.AttributeID = 3
  and a4.AttributeID = 4;

-- option 3: using aggregate and having
select p.id, p.productname
from Products p
join Attributes a on p.ID = a.ProductID
group by p.id, p.productname
having sum(case when a.AttributeID = 3 then 1 else 0 end) > 0
   and sum(case when a.AttributeID = 4 then 1 else 0 end) > 0;

-- option 4: using having and count
select p.id, p.productname
from Products p
join Attributes a on p.ID = a.ProductID
where a.AttributeID in (3,4)
group by p.id, p.productname
having count(distinct a.attributeid) = 2;

Welke manier het beste voor u is, hangt waarschijnlijk af van welk resultaat u nodig heeft en indexen enzovoort.

Voorbeeld van SQL Fiddle.




  1. 2 tabellen samenvoegen in SELECT(MYSQL/PHP)

  2. CDbCommand::fetchColumn() mislukt:SQLSTATE[HY000]:Algemene fout:2014 Kan geen query's uitvoeren terwijl andere niet-gebufferde query's actief zijn

  3. Android-applicatie om afbeelding naar MySQL te verzenden

  4. Kan GI 12.1.0.2 en Segmentatiefout niet compileren