(a) There is just one table. So, the table ought to right now be in 1NF . The PetID and OwnerID are primary keys.
(b)The OwnerLastName and OwnerFirstName are selective to the
OwnerID. The PetName, PetType and PetBreed are PetID's unique
attributes. Carrying the table into 2NF would mean maneuvering the
owner into their own table.
Owner: OwnerID, OwnerName
Pet: OwnerID, PetID, PetName, PetType, PetBreed, ServiceCharge,
ServiceDate and ServiceDescription
(c) The identify 3NF may look like this
Owner: OwnerID, OwnerName
Pet: OwnerID, PetID, PetName, PetType, PetBreed
Services: PetID, ServiceDescription, ServiceDate, ServiceCharge
Get Answers For Free
Most questions answered within 1 hours.