Here\'s my code:
select yr,count(*) from movie join casting on casting.movieid=movie.id join actor on casting.actorid = actor.id where actor.name = \'Jo
Just order by count(*) desc and you'll get the highest (if you combine it with limit 1)
count(*) desc
limit 1