Assignment: Review Project
- Purpose: To review database principles you learned in previous weeks.
- Tasks:
- Forward engineer a database.
- Load data into database.
- Query data.
Design the University database
Watch the following video. Note: this video was created for the 14 week course. The week numbers for your course will be different.
(12:11 mins, “Project Part 1 Intro” Transcript)
Create the University database
Forward engineer the University database and copy the code used during that forward engineer into an sql file named University.sql. This is the same file you will be adding the insert statements to.
Load the University database
Insert the University Data. Use Insert statements and save as one file with the forward engineer code.
Query the University database
(04:27 mins, “Project Querying the University database” Transcript)
Write the queries listed below and add them your University.sql file. Use comments to number your queries.
-
Students, and their birthdays, of students born in September. Format the date to look like it is shown in the result set. Sort by the student's last name.
-
Student's age in years and days as of Jan. 5, 2017. Sorted from oldest to youngest. (You can assume a 365 day year and ignore leap day.) Hint: Use modulus for days left over after years. The 5th column is just the 3rd and 4th column combined with labels.
-
Students taught by John Jensen. Sorted by student's last name
-
Instructors Bryce will have in Winter 2018. Sort by the faculty's last name.
-
Students that take Econometrics in Fall 2019. Sort by student last name.
-
Report showing all of Bryce Carlson's courses for Winter 2018. Sort by the name of the course.
-
The number of students enrolled for Fall 2019
-
The number of courses in each college. Sort by college name.
-
The total number of students each professor can teach in Winter 2018. Sort by that total number of students (teaching capacity).
-
Each student's total credit load for Fall 2019, but only students with a credit load greater than three. Sort by credit load in descending order.
Submission:
Submit the University.sql file, which includes forward engineering code, inserts, and queries in Canvas
Useful Links:
- Next Activity: Complete W01 Prove Quiz and W01 60-second Status Update in Canvas
- Previous Activity: Subqueries and Indexes
- Go to: Week Index • Course Home • Canvas