Relational Database Design and Modeling for Software Engineers
0% completed
Solution to Exercise 2
Step 1: Check for First Normal Form (1NF)
To determine if the given table is in 1NF, we need to ensure:
- Each column contains atomic values (no multivalued or composite attributes).
- Each row is unique and identifiable by a primary key.
Given Table:
| Emp_ID | Emp_Name | DOB | Area | City | State | Zip |
|---|---|---|---|---|---|---|
| 101 | Alice | 1990-05-01 | Downtown | New York | NY | 10001 |
.....
.....
.....
Like the course? Get enrolled and start learning!