Consider the following tables structucres:
STUDENT(STUDENT_ID, STUDENT_NAME, COURSE_ID, JOIN_DATE) RESULTS(STUDENT_ID, SUB1_MARKS, SUB2_MARKS, SUB3_MARKS, SUB4_MARKS) COURSE(COURSE_ID, COURSE_NAME)
Write a query to get the results of all the students who are all enrolled in the same course as the student with STUDENT_ID 123.
Reveal answer
Fill a bubble to check yourself