functional dependencies, what is the highest normal form the data model complies to? Note: Primary keys are
Given the following relation(s) and the functional dependencies, what is the highest normal form the data model complies to?
Note: Primary keys are indicated in bold.
TaxiRide (jobID, jobDateTime, driverID, driverName, taxiID, clientID, clientName, jobPickUpAddress)
jobID -> jobDateTime, driverID, driverName, taxiID, clientID, clientName, jobPickUpAddress
jobDateTime, driverID -> jobID, driverName, taxiID, clientID, clientName, jobPickUpAddress
jobDateTime, taxiID -> jobID, driverID, driverName, clientID, clientName, jobPickUpAddress
jobDateTime, clientID -> jobID, driverID, driverName, taxiID, clientName, jobPickUpAddress
driverID -> driverName, taxiID
clientID -> clientName
A)1NF
B)2NF
C)3NF
Trending now
This is a popular solution!
Step by step
Solved in 2 steps