sql >> Database teknologi >  >> RDS >> Mysql

MySQL JOIN, GRUPPER EFTER, BESTIL EFTER

SQLFiddle-demo

select products.id,
       coalesce(t1.mid,t2.mid) as image_id      

from products
left join (select min(id) mid,product_id 
                  from images where `default`=1
                  group by product_id ) t1
        on products.id=t1.product_id
left join (select min(id) mid,product_id 
                  from images where `default`=0
                  group by product_id ) t2
        on products.id=t2.product_id


  1. Indsæt i tabel fra Array PHP

  2. Laravel leftJoin kun sidste post af højre tabel

  3. Cloud 9 IDE kan ikke oprette forbindelse til databasen

  4. Introduktion til PL/SQL-funktioner i Oracle-databasen