I am supposed to find FDs from the given the schema =>
Loan(ISBN:pk, copy:pk, loandate:pk, loanerNr:fk, returnDate)
pk = primary key fk = foreign key
Lets say that this is for a library DB-system that keeps the records of books loaned out. Also the returnDate attribute can be nill. I've comed to these FDs =>
LoanerNr, ISBN -> copy, loanDate
loanDate, copy, loanerNr -> returnDate
The thing is that I'm not entirly sure if my FDs are all of the schema, and if they are right. As right now, they seems logical to me, but some input from outside would be very helpfull.