Mysql
 sql >> Baza danych >  >> RDS >> Mysql

MySQL zwraca 1 obraz dla każdego produktu

Ten będzie działał, ale jest dość brzydki

select p.intProductId, p.strProductName, pi.strImageName 
from tblProducts p
inner join tblProductImages pi on pi.intProductID = p.intProductId
inner JOIN (select min(intOrder) minOrder, intProductID
           FROM tblProductImages
           GROUP BY intProductID) s
           on s.intProductID = p.intProductID and s.minOrder = pi.intOrder
union
select p.intProductId, p.strProductName, pi.strImageName
from tblProducts p
left join tblProductImages pi on pi.intProductID = p.intProductId
where pi.intProductID is null;

alternatywa :

select p.intProductId, p.strProductName, pi.strImageName
from tblProducts p
left join tblProductImages pi on pi.intProductID = p.intProductId
where pi.intProductId is null or pi.IntOrder = (select min(intOrder)
                                                from tblProductImages
                                                where intProductId = pi.intProductId);

Sqlfiddle



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Czy można wymusić sprawdzanie danych w MySQL za pomocą wyrażenia regularnego?

  2. tabele blokujące test mysqldump

  3. Grupowanie rekordów z pętli while | PHP

  4. Jak wygenerować UNIKALNĄ liczbę losową w php?

  5. Problem z blokadą demona MySQL