What is one to one and one to many and many to many relationship
| One to One means two tables with primary and foreign key relationships.
One to Many means splitting the data into two tables with primary key and foreign key relationships. Many to Many relationships are done junction table with the keys from both the tables forming the composite primary key of the junction table. |
|
