What is (database) normalisation?
Normalisation is the process of reducing duplication in database tables.
What are the two Normal Form Rules?
How are foreign keys important to joined tables?
Foreign keys reference primary keys from other tables.
How do you meet the two Normalisation Rules?
Any information which is repeated should be placed in a new table. The existing and new tables could then be joined via their primary keys in another new table. This new table’s name by naming convention should be a combination of the two tables e.g. movies table and genres table joined, would be movies_genres.
What are the three different types of table relationships?
One-to-One
One-to-Many
Many-to-Many