Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

MySQL THAM GIA, NHÓM THEO, ĐẶT HÀNG THEO

Bản trình diễn SQLFiddle

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Đã cố đọc lỗi cuối luồng trong MySQL

  2. Xóa điều khoản giới hạn khỏi MySQL Workbench

  3. Làm thế nào để tính toán số bước nhảy giữa nguồn và đích?

  4. MySQL Gem cho Ruby On Rails

  5. Tìm nạp quy trình lưu trữ biểu mẫu ID được chèn lần cuối trong MySQL