SQLAssignment 2 Guidelines
SQLAssignment 2 Guidelines
SQLAssignment 2 Guidelines
Fall 2024
This is the second assignment in the three part SQL project. For this assignment, you will be creating
and uploading data to the tables that you created for the previous assignment. As before, you are
working with a subset of the tables that were created for the database design for the Great Lakes Fitness
Center application.
As a general rule, the data is limited by your imagination. However, in addition to the above constraints,
there should be some semblance of reality, particularly for the amounts charged. Also, the bill amounts
should roughly correspond to the charges made during that month. The account balance will probably
exceed the last bill amount. Also, the data should not be the same across rows, and times (if applicable)
must not be set to midnight.
Submission Guidelines
Appendix
Contents of TableContents.pdf
Statement of Academic Integrity
I, {your name}, acknowledge that the work turned in for this assignment is my own, and that I have
neither given nor received unauthorized assistance in completing this assignment.
‘--- Table contents
CUSTOMER TABLE
CU NAME STRADDR CITY ST ZIP PC PRINTER
-- ---------- ---------- ---------- -- --------- -------- --------
C1 ABBOTT 123 STREET MILWAUKEE WI 532011234 DELL LEXMARK
C2 BURNS 835 STREET RACINE WI 531120000 MAC HP
C3 CHAPLIN 256 ROAD COLUMBUS OH 432011234 DELL CANON
C4 HARDY 826 AVENUE CHICAGO IL 600670000 GATEWAY HP
C5 KEATON 722 WAY DETROIT MI 527151234 HP
ORDERS TABLE
OR ORDDATE AMOUNT CU
-- ---------------- ---------- --
O1 01/01/2020 09:10 156.99 C1
O2 01/01/2020 10:29 79.88 C3
O3 01/10/2020 08:37 719.99 C1
O4 01/13/2020 15:44 343.97 C4
O5 01/17/2020 07:11 231.09 C5
End of TableContents.pdf