show/hide this revision's text 2 added 1085 characters in body

here's a very basic example of normalizing a table:

a pretty standard table containing various data, but we can see some issues right away. we can see that a student's name is dependant on his ID, however, a student may be involved in more than one class, and each class would conceivably have a different grade. we can then think about the tables as such:

this is not bad, now we can see we have various students, and various classes, but we haven't captured the student's grades.

now we have a 3rd table, which allows us to understand the relation between a particular student, a particular class, and a grade associated with that class. from our first initial table, we now have 3 tables in a normalized database (let's assume we don't need to normalize grades any further for sake of example :) )

a few things we can glean from this very basic example:

  • our data is all tied to a key of some sort (student_id, class_id, and student_id + class_id). these are unique identifiers within each table.
  • with our keyed relations, we're able to relate information to each other (how many classes is student #4096 enrolled in?)
  • we can see our tables will not contain duplicated data now (think about our first table, where student_class could be the same value for many students. if we had to change the class name, we'd have to update all the records. in our normalized format, we can just update class_name of class_id)
  • show/hide this revision's text 1

    you should read up and understand the basics of normalization. for most projects, normalizing to 3rd normal form will be just fine. there are always certain scenarios when you want more or less normalization, but understanding the concepts behind it will allow you to think about how your database is structured in a normalized format.