Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

mysql तालिका क्वेरी 2 मानों में शामिल हों

इसे हल करने के कई तरीके हैं; सबसे सीधा तरीका शायद कुछ exists . का उपयोग करना होगा खंड, या attributes में शामिल हों तालिका दो बार, लेकिन आप group by . का भी उपयोग कर सकते हैं और having समान परिणाम प्राप्त करने के लिए खंड:

-- 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;

आपके लिए कौन सा तरीका सबसे अच्छा है, यह शायद इस बात पर निर्भर करेगा कि आपको किस परिणाम की आवश्यकता है और अनुक्रमित वगैरह।

नमूना SQL Fiddle.




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. mysql सरणी सहेजें php

  2. अन्य पंक्तियों से गणना किए गए डेटा के साथ नई पंक्ति डालें

  3. SQL अपडेट स्टेटमेंट को चलाने से पहले उसका परीक्षण कैसे करें?

  4. सी # mysql के साथ परेशानी हो रही है:पंक्ति 1 पर कॉलम के लिए गलत स्ट्रिंग मान कोड 1366

  5. डॉकटर कंटेनर mysql डेटाबेस तक पहुँचना