The title could be not very precise but here is what i would like to do, and to ask for advice
I have two tables, one is dedicated to different artists, the other one for different music genres. The final idea is to assign one or more genres to one artist.
I was thinking to use tbl_genre.ID and to store it in tbl_artist.genre but this is not going to work (possible issues when searching for a specific genre in tbl_artist using LIKE % %).
The other option is maybe to create a 3th table and to store all the genre IDs relevant to an artist in a separate row, but somehow this solution looks "lame", and im wondering if there is a better one.
Thanks.