Following is a relation:
MEETING (AttorneyID, AttorneyName, AttorneyPhone, ClientID, ClientName, ClientPhone, MeetingDate, MeetingTime, MeetingRoom, MeetingDuration)
Assumption:
Questions and Answers:
TABLE (PrimaryKey, ForeignKey (FK), Attribute1, Attribute2, Attribute3)
The attributes of a table are said to be dependent on each other when an attribute of a table uniquely identifies another attribute of the same table.
Functional Dependencies here are
AttorneyID-->AttorneyName, AttorneyPhone
ClientID-->ClientName, ClientPhone
In the meeting table, The primary key is the combination of AttorneyID , ClientID so the client name only depends on ClientID, not on AttorneyID. Hence its partial dependencies. Same case with Attorney name.
A functional dependency is said to be transitive if it is indirectly formed by two functional dependencies. For e.g.
AttorneyName -> ClientID is a transitive dependency if the following three functional dependencies hold true:
Get Answers For Free
Most questions answered within 1 hours.