假設我給了下面的表格,我試圖確定它是在1NF或不是。爲什麼這個表格不是第一種正常形式
Table:
Mem_id mem_name phone email Book_num Book_titl Author_nam publication edition
100 smith 12443 eml1 200 physics john MACGROW 1ST
201 math martin MACGROW 2ND
101 hena 1020 eml2 200 physics john MACGROW 2ND
102 moon 2020 eml3 204 new java korth ALPHA 4TH
我已經應用以下規則,它都滿足,那麼爲什麼表不在1NF?
我的應用的條件:
1.values of each attribute is atomic/ Only one value per column
2.no two rows are identical
3.every column has unique name
4.all entries in any column must be same type
誰告訴你它不是? –