Hi I am sitting with an flat db file, and need it converted to 3NF
Example:
ProductID Published Title Authors
1 2000 Car Mech. Bill Meyer, Peter Daniels
I have split this structure in 3 tables:
Book
Author
Author_Book
In Book I have the following fields: (PrimaryKey)ProductID, Producttitle, Published.
In Author I have: (PrimaryKey)AuthorID, Firstname, Lastname
Ans in Author_Book I have: ProductID, Author
So, one book can have many authors, and one author can have many books. It must be a many-many relationship.
Have I thought correctly, and made a proper 3NF?