Understanding joining of three tables in MySQL
The database schema below represents a fictional shows database called hbtn_0d_tvshows tables. tv_shows id title tv_genres id name tv_show_genres id show_id genre_id The tv_show_genres is a pivot table that links tv_shows and tv_genres tables. Now I have been given a…