inheritance
Programmer
I have four tables User, Member, Artist, Genre all with primary keys like so UserID, MemberID, ArtistID, GenreID and fields which are relevant to the table
UserID MemberID ArtistID GenreID
UserName FirstName Name Genre
Password LastName Link
Address Image
etc Bio
I want to be able to define a many to many relatioship between the artist and genre and so far I have tried defining a junction table called Artist_Genre with both ArtistID and GenreID FK's. If I think I know what I am talking about, this is supposed to create a many to many relationship from a pair of one to many relationships from the Artist and Genre tables ? how does the other two tables connect to this new entity
I have played about with these relationships like it was DNA
I just can't get it all together
Does anyone know what I am trying to do ?
Cheers
UserID MemberID ArtistID GenreID
UserName FirstName Name Genre
Password LastName Link
Address Image
etc Bio
I want to be able to define a many to many relatioship between the artist and genre and so far I have tried defining a junction table called Artist_Genre with both ArtistID and GenreID FK's. If I think I know what I am talking about, this is supposed to create a many to many relationship from a pair of one to many relationships from the Artist and Genre tables ? how does the other two tables connect to this new entity
I have played about with these relationships like it was DNA
I just can't get it all together
Does anyone know what I am trying to do ?
Cheers