I am having trouble grasping the idea of redundant data in DBMS. To quote my professor:
"For each unique PK value, there are many sets of data, then, those will be repeating group."
What does this mean? Can someone please illustrate?
This is what I understand:
Building table
++++++++++++++++++++++++++++++++
|Building#  | Room  | Cleaner# |
|------------------------------|
|B001       |  1    |   XYZ    |
|B002       |  1    |   XYZ    |
++++++++++++++++++++++++++++++++
Here, Cleaner is the PK of the cleaner table. So, does that mean that the repeating data would be room attribute? What if B001 was repeated in the table?
 
    