Question
Given the following database sample instance, write the following SQL queries: (CLO 3) Student Name Student_number Class Major Smith 17 1 CS Brown 8 2
Given the following database sample instance, write the following SQL queries: (CLO 3)
Student
Name | Student_number | Class | Major |
Smith | 17 | 1 | CS |
Brown | 8 | 2 | CS |
Course
Course_name | Course_number | Credit_hours | Department |
Intro to computers | CS1310 | 4 | CS |
Data Structure | CS3320 | 4 | CS |
Discrete Math | MATH2410 | 3 | MATH |
Database | CS3380 | 3 | CS |
Section
Section_number | Course_number | Semester | Year | Instructor |
85 | MATH2410 | FALL | 07 | KING |
92 | CS1310 | FALL | 07 | Anderson |
102 | CS3320 | SPRING | 08 | Knuth |
112 | MATH2410 | FALL | 08 | Chang |
119 | CS1310 | FALL | 08 | Anderson |
135 | CS3380 | FALL | 08 | Stone |
Grade_Report
Student_number | Section_identifier | Course_number | Grade |
17 | 112 | MATH2410 | B |
17 | 119 | CS1310 | C |
8 | 85 | MATH2410 | A |
8 | 92 | CS1310 | A |
8 | 102 | CS3320 | B |
8 | 135 | CS3380 | A |
Prerequisite
Course_number | Prerequisite |
CS3380 | CS3320 |
CS3380 | MATH2410 |
CS3320 | CS1310 |
- Retrieve the course names of all the courses that offered by CS department (1 pts)
- Retrieve the names of all courses taught during fall of (year) 08 along with the names of the instructors. (2 pts)
- Retrieve the name and transcript of each junior student (class 1) majoring in Computer Science (CS). A transcript includes course names, course numbers, semester, year and grade for each course completed by the student. (2 pts)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started