GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/Classes/CST1600/Labs/ |
Upload File : |
UNF: student(Name, HomeMobilePhoneNumbers, StudentID, MajorCode1, MajorCode2, MajorCode3) 1NF: Name is non-atomic. Move to two fields (firstname and lastname). HomeMobilePhoneNumbers is non-atomic. Move to a linked table (studentphone). HomeMobilePhoneNumbers is changed to number and a type field is added. MajorCode1, MajorCode2, MajorCode3 are repeating fields. Move to an entity table (major)and add a linking table (student_major). MajorCode1, MajorCode2, MajorCode3 are named Code. student(StudentID*, firstname, lastname) studentphone(StudentID*@, number*, type) major(student_major*) student_major(StudentID*@, student_major*@) 2NF: No changes needed. student(StudentID*, firstname, lastname) studentphone(StudentID*@, number*, type) major(student_major*) student_major(StudentID*@, student_major*@) 3NF: No changes needed. student(StudentID*, firstname, lastname) studentphone(StudentID*@, number*, type) major(student_major*) student_major(StudentID*@, student_major*@) student(StudentID*, firstname, lastname) Avram Hinton 34673656 Hayes Gibson 83681840 Kristen Acosta 94086534 studentphone(StudentID*@, number*, type) 34673656 103-391-7811 home 34673656 676-683-6301 mobile 83681840 447-149-5334 home 94086534 972-658-1570 mobile major(student_major*) NSA CSS CST CP MAD student_major(StudentID*@, student_major*@) 34673656 NSA 34673656 CSS 34673656 CST 83681840 CST 94086534 CP 94086534 MAD 2NF: OK 3NF: OK