Functional Dependency in Customer Table FldEmployeeNameïƒ FldEmployeeID FldAddressïƒ FldEmployeeID FldPhoneïƒ FldEmployeeID FldEmailïƒ FldEmployeeID FldEmailïƒ FldEmployeeID FldRetailCentreIDïƒ FldEmployeeID 1.There is no repeated group in the table. Therefore; the table is in first normal form. 2.All fields are depending on only primary key EmployeeID. There is no partial dependency. Therefore; the table is in second normal form. 3.There is no transitive dependency in the table. Therefore; the table is in third normal form.
Paraphrase This Document
Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Queries Query 1 SELECT * FROM TbCustomer WHERE CustomerName like "*Walker*"; Query 2 SELECT TbItem.itemNumber, TbItem.weight, TbItem.dimensions, TbItem.insuranceAmount, TbItem.destination, TbItem.finalDeliveryDate, TbReceipt.receivedDate FROM TbItem INNER JOIN TbReceipt ON TbItem.itemNumber=TbReceipt.itemNumber; Query 3 SELECT TbTransportation.customerID, TbCustomer.customerName, count(TbTransportation.scheduleNumber) AS NumSchedules FROM TbCustomer INNER JOIN TbTransportation ON TbCustomer.customerID = TbTransportation.customerID GROUP BY TbTransportation.customerID, TbCustomer.customerName;
Report
Secure Best Marks with AI Grader
Need help grading? Try our AI Grader for instant feedback on your assignments.
References B. Peter n.d., SQL SERVER Database Normalization Basics for Developers,[Online]. Available:http://www.nullskull.com/a/1629/sql-server-database-normalization-basics-for- developers.aspx. [Accessed: 21-May-2019] Cinergix Pty Ltd. 2011, Ultimate Guide to ER Diagrams,[Online]. Available:http://creately.com/blog/diagrams/er-diagrams-tutorial/. [Accessed: 21-May-2019]