In the following example:
Could you merge the genre into a single column?
For example:
podcast = 1, Genre = Music, Fiction.
podcast = 2, Genre = Art, Videogames, Politics.
If you can, for that you require the GROUP_CONCAT command and the syntax would be the following:
SELECT idPodcast, GROUP_CONCAT(genero) FROM generos GROUP BY idPodcast