Question
Student(snum: integer, sname: string, major: string, level: string, age: integer) Class(name: string, meets at: string, room: string, d: integer) Enrolled(snum: integer, cname: string) Faculty(d: integer,
Student(snum: integer, sname: string, major: string, level: string, age: integer) Class(name: string, meets at: string, room: string, d: integer) Enrolled(snum: integer, cname: string) Faculty(d: integer, fname: string, deptid: integer)
Give the above, I need a solution to the following problem for MySQL Workbench. For each faculty member that has taught classes only in room R128, print the faculty members name and the total number of classes she or he has taught.
Do not send me the solution below - which is everywhere because it does not work in MySQL Workbench.
SELECT F.fname, COUNT(*) AS CourseCount
FROM Faculty F, Class C
WHERE F.d = C.d GROUP BY F.d, F.fname
HAVING EVERY ( C.room = R128 );
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