假設有一關聯綱目B,用來記載大學圖書館的書籍資料:B(callNumber,
seqNum, author, title, publisherName, publisherAddress, publisherPhone,
storeBranch),其屬性分別為:圖書編號(callNumber)、序列編號
(seqNum)、作者(author)、書目(title)、出版者名稱(publisherName)、
出版者地址(publisherAddress)、出版者電話(publisherPhone),並具
有下列函數相依:(每小題10 分,共30 分)
callNumber → {title, publisherName}
publisherName → {publisherAddress, publisherPhone}
{callNumber, seqNum} → storeBranch
callNumber → author /* 多值相依*/
那些屬性合成關聯鍵?
請將B 分解成滿足第2 正規化(2NF)的關聯綱目(但不是3NF)。
請將B 分解成滿足第3 正規化(3NF)的關聯綱目(但不是4NF)。