二、假設有一個記載評論資料的資料表 Review,包括以下欄位:
1. DateTime //評論記載時間
2. Author //評論人
3. Unit //評論人單位
4. Title //標題
5. Content //評論內容
6. Length //內容長度
7. HashTag //標籤
相依(Dependency)如下:
{DateTime, Author}→{Unit, Title, Content, Length}
{Content}→{Length}
{Author}→{Unit}
{DateTime, Author}→→{HashTag}
其中→為函數相依(Functional Dependency),→→為多值相依(Multi-valued Dependency)。