để tham gia bên trái có hiệu lực, bạn cần di chuyển điều kiện earned_trophys.user_id = 1
vào on
mệnh đề thay vì 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