Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write in sql Problem 1 1 A . What is the department name and a total credit earned by a student Boyle? Return ONLY the
Write in sql
Problem
A What is the department name and a total credit earned by a student Boyle? Return ONLY the department name and the total credit for that student.
B What OTHER students are in the SAME department that student Boyle is in Display their names, IDs and total credit ordered by name in descending order. use a subquery
C What grades has the student Boyle got in the years and List ONLY his course IDs and grades.
Problem
A Add two new students Frodo and Gandalf that just got accepted to the Marketing department. Assign IDs as and assign NULL to the number of credits.
B Student Gandalf started studying with total credits transferred from another university Reflect that in the database.
C Student Frodo was expelled for being late too many times. Reflect that in the database. University policy for the expelled students is that their record is deleted.
Problem
A Find out how many courses are offered by each department that starts with the letter C Return ONLY the department name as well as the number of courses offered.
B What is the departments that offers the greatest number of courses among all the departments in the University? Return ONLY the name of this department and its number of courses offered.
Problem
A Find the name, id and building of instructors whose department office is located in the building which name contains Lamb.
B These instructors cannot be student's advisors any longer. Delete them from the table advisor using one single SQL statement hint: use where referring to a subquery similar to the previous one
Problem
All instructors with salary lower than are in fact new PhD students in the same department, but that information is missing from the student table. Fix that problem by creating appropriate student records; use credits as the total credit.
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