79508710

Date: 2025-03-14 10:09:00
Score: 2
Natty:
Report link

SELECT top 1 CONCAT(P.FNAME, ' ', P.SNAME, ' ', COUNT(E.EPI_NO)) AS Info FROM EPISODES E

JOIN PRESENTERS P ON E.PRES_ID = P.PRES_ID

GROUP BY P.PRES_ID, P.FNAME, P.SNAME

ORDER BY COUNT(E.EPI_NO) DESC

This gives the fname and lname of the Presenter who has done the max number of episodes.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Arabi Nambi