sql >> Base de Datos >  >> RDS >> Mysql

MySQL Únase y obtenga todas las relaciones incluso si 0

para que la combinación izquierda tenga efecto, debe mover la condición earned_trophys.user_id = 1 en el on cláusula en lugar de where .

select
    trophy.name,
    earned_trophys.user_id,  
    count(user_id) as temp
from
    trophy
left join
    earned_trophys
on
    trophy.trophy_id = earned_trophys.trophy_id and earned_trophys.user_id = 1
group by
    name