i am about to experiment with mysql and php project to build a lyrics archive. This archive will have a list of all artist name - album name that there are lyrics for. if there are only lyrics for 1 song then the artist name - song name will be in the menu.
i am thinking of having 3 tables
1.artist table
---------------
art_id [primary]
art_name
art_details
---------------
2.album table
---------------
alb_id [primary]
art_id
alb_name
alb_year
alb_genre
---------------
3.album contents table
-----------------
alb_id [primary_combination]
track_no [primary_combination]
track_title
track_lyrics
-----------------
i would really appreciate any advice as i am fairly new and do not want to have to restart this project when i find inadequacies in my database structure
look forward to your replies
i am thinking of having 3 tables
1.artist table
---------------
art_id [primary]
art_name
art_details
---------------
2.album table
---------------
alb_id [primary]
art_id
alb_name
alb_year
alb_genre
---------------
3.album contents table
-----------------
alb_id [primary_combination]
track_no [primary_combination]
track_title
track_lyrics
-----------------
i would really appreciate any advice as i am fairly new and do not want to have to restart this project when i find inadequacies in my database structure
look forward to your replies