Single Vs Multivalued Attributes
Duration: 6 min
This video lesson is available to enrolled students.
AI Summary
An AI-generated summary of this video lecture.
This educational video provides a detailed lecture on database attribute types, specifically focusing on the distinction between single-valued and multivalued attributes within the context of Entity-Relationship (ER) modeling and relational database design. The instructor begins by defining single-valued attributes, which hold only one value per entity instance, such as an Aadhar number or date of birth. He then contrasts this with multivalued attributes, which can hold multiple values simultaneously, like phone numbers or email addresses. The lecture visually demonstrates these concepts using an ER diagram for a "Student" entity, highlighting specific attribute notations. The core of the lesson transitions into a practical application involving database normalization, specifically addressing the First Normal Form (1NF). The instructor presents a flawed "Customer" table where a single cell contains multiple phone numbers, explaining why this violates 1NF. He critiques a common "hack" or "jugaad" solution of adding extra columns for phone numbers and instead demonstrates the correct relational model approach: creating a separate, independent table for the multivalued attribute. This new table links back to the main entity using a foreign key.
Chapters
0:00 – 2:00 00:00-02:00
The instructor introduces the topic "Types of Attributes" with a slide. He defines "Single valued" attributes as those having a single value at any instance of time, citing "Aadhar no" and "dob" as examples. He then defines "Multivalued" attributes as those capable of having more than one value for an entity at the same time, using "Phone no", "email", and "address" as examples. The visual aid includes an ER diagram for a "Student" entity. The instructor points out that `Stu_Phone` is represented by a double ellipse, indicating it is a multivalued attribute. He also identifies `age` as a derived attribute, shown with a dashed ellipse. He explains that in a relational model, this attribute becomes an independent table.
2:00 – 5:00 02:00-05:00
The lecture shifts to a practical example using a table titled "Customer". The instructor highlights a violation of the First Normal Form (1NF) where the "Telephone Number" column contains multiple values in a single cell, such as "555-861-2025, 192-122-1111". He labels a common workaround as "jugaad technology," showing a table where columns are split into "Telephone Number1" and "Telephone Number2". He explains this is not a scalable solution. The first table, "Customer Name," retains the primary key and name details. The second table, "Customer Phone Number," contains the Customer ID as a foreign key and the specific phone numbers, effectively normalizing the data structure.
5:00 – 5:43 05:00-05:43
The video returns to the initial slide on "Types of Attributes" to summarize the relational model implementation. The instructor reiterates that a multivalued attribute is represented by a double ellipse in an ER diagram. He emphasizes that in the relational model, this attribute becomes an independent table. The process involves creating a separate table for each multivalued attribute. Crucially, this new table is constructed by taking the multivalued attribute (MVA) itself and the primary key (PK) of the main table, which acts as a foreign key (FK) in the new table.
The lesson effectively bridges theoretical ER modeling concepts with practical relational database design. By moving from abstract definitions of single and multivalued attributes to a concrete example of normalization, the instructor clarifies how to handle complex data structures like multiple phone numbers. The progression from identifying a 1NF violation to implementing a proper foreign key relationship demonstrates the standard procedure for database normalization.