Question: USING MYSQL, Translate The statement below from english to sql. What are the names of all students that have taken a course taught by an

USING MYSQL, Translate The statement below from english to sql.

What are the names of all students that have taken a course taught by an instructor named Katz? (make sure there are no duplicates)

UNIVERSITY schema:

Classroom(Building, Room_Number, Capacity); Department(Dept_Name, Building, Budget); Course(Course_Id, Title, Dept_Name, Credits); Instructor(Id, Name, Dept_Name, Salary); Section(Course_Id, Sec_Id, Semester, Year, Building, Room_Number, Time_Slot_Id); Teaches(Id, Course_Id, Sec_Id, Semester, Year); Student(Id, Name, Dept_Name, Tot_Cred); Takes(Id, Course_Id, Sec_Id, Semester, Year, Grade); Advisor(S_Id, I_Id); Time_Slot(Time_Slot_Id, Day, Start_Time, End_Time); Prereq(Course_Id, Prereq_Id);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!