Question: FINAL PROJECT - FINAL Project Submission FINAL PROJECT The final project must be an Access database that contains a minimum of 1 0 tables with
FINAL PROJECT FINAL Project Submission
FINAL PROJECT
The final project must be an Access database that contains a minimum of tables with relationships, in rd normal form. Each table should have a minimum of rows of data.
You must also have four queries defined to perform CRUD from one table. There should be a total of saved queries minimum.
Were asking for the four basic CRUD queries for one table. For example, if you had a table called Customers, with FirstName and LastName, the four queries would be:
CREATE
INSERT INTO Customers FirstName LastName VALUES JohnDoe;
READ
SELECT FROM Customers WHERE FirstName John and LastName Doe;
UPDATE
UPDATE Customers SET FirstName Jane LastName Smith WHERE FirstName John and LastName Doe;
DELETE
DELETE FROM Customers WHERE FirstName Jane and LastName Smith;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
