लेफ्ट जॉइन के प्रभावी होने के लिए आपको earned_trophys.user_id = 1
कंडीशन को मूव करना होगा on
. में 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