I am not sure if this is in BCNF or not, but the teacher told me that INSTRUMENT is in BCNF.. Is he messing with me? The teacher keeps messing up my mind on what is right and wrong and making me unsure. He keeps saying stuff that i've already thought of as clearly and I don't even get what he is saying.
INSTRUMENT(InstrumentID,
InstrumentType, Tune, Performer, Adr, Phone, Availability)
NOTES(TitleNr,Tune,
Composer, Copies, Title, Performer)
So is this normalized? in BCNF:
Instrument(InstrumentID
, InstrumentType, Tune, Availability, PerformerID*)
NOTES(TitleNr, Title,
Tune, Composer, Copies, PerformerID*)
PERFORMER(PerformerID
, Name, Adr, Phone)
Tune is in both INSTRUMENT and NOTES. Can it be in both?