Skip to content

Commit 7ee6442

Browse files
authored
Merge pull request #337 from Billpack68/patch-1
Fixed typo
2 parents 2dacda7 + 87818a3 commit 7ee6442

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

instruction/db-model/db-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ All of the same principles of good software design also apply when creating repr
9696
| 82 | Bud | 77 | Chip | DoggyTown | Orem | false | 2027 |
9797
| 83 | Bud | 56 | Puddles | DoggyTown | Orem | false | 2027 |
9898

99-
Additoinally, large, non-cohesive tables, force you to represent the same data in multiple rows which violates the DRY principle. Notice in the above example that the store information is repeated in multiple rows. Instead you want to `normalize` a table like this into multiple tables that each represent a single cohesive object. You then use relationships between the tables to create aggregations, or views as they are called in the relational model, as desired.
99+
Additionally, large, non-cohesive tables, force you to represent the same data in multiple rows which violates the DRY principle. Notice in the above example that the store information is repeated in multiple rows. Instead you want to `normalize` a table like this into multiple tables that each represent a single cohesive object. You then use relationships between the tables to create aggregations, or views as they are called in the relational model, as desired.
100100

101101
## Views
102102

0 commit comments

Comments
 (0)