Top Competitors

  • + 1 comment

    what is the issue with my code?

    Select Concat(hacker_id,' ', name) as xyz from ( Select Q.hacker_id , H.name from Hackers as H left join (Select s.hacker_id,s.score from Difficulty as d left join Submissions as s on d.score = s.score)Q on H.hacker_id = Q.hacker_id group by hacker_id , name having count() > 1 order by count() DESC , hacker_id) t