Functional Dependency
Functional Dependency
42 abc CO A4
43 pqr IT A3
44 xyz CO A4
45 xyz IT A3
46 mno EC B2
47 jkl ME B2
42 abc 17
43 pqr 18
roll_no name age
44 xyz 18
42 abc 17
43 pqr 18
44 xyz 18
In this table:
X: bike_model
Y: color
Z: manuf_year
For each bike model (bike_model):
1. There is a group of colors (color) and a group of manufacturing
years (manuf_year).
2. The colors do not depend on the manufacturing year, and the
manufacturing year does not depend on the colors. They are
independent.
3. The sets of color and manuf_year are linked only to bike_model.
That’s what makes it a multivalued dependency.
In this case these two columns are said to be multivalued dependent
on bike_model. These dependencies can be represented like this:
42 abc CO 4
43 pqr EC 2
44 xyz IT 1
45 abc EC 2