Table 1: Student
id (PK)
name
Table 2: `Course
id (PK)
name
Table 3: StudentCourse (association between student and course)
student_id
course_id
grade
PK(student_id, course_id)
What will be the SQL query to find names of students and courses where the student received ‘F’ grade for every course taken by that student?
1 Answer