SELECT s.subject_id
, s.subject_name
, t.class_id
, t.section_id
, c.teacher_id
FROM school_timetable_content c
JOIN s
ON c.subject_id = s.subject_id
JOIN school_timetables t
ON t.timetable_id = c.timetable_id
WHERE c.teacher_id = 184
AND t.class_id = 24
AND t.school_id = 28
From the above query, I get the following result shown below:-
again from the above result I want to get subjects which are associated with all the unique section_id 15, 16,26. i.e Expected output Hindi,Maths