I am working with SQL+ and am having trouble with querying multiple tables, while comparing count values.
For example,
I want to know the Student Names and ID # that have taken more than 5 exams in high school. Student Names && ID #s are stored in the STUDENT table, while the amount of exams as well as student ID#s are stored in the EXAM table.
What would be the best way to query for "students names and id#s who have taken more than 5 exams"?
I am working in ORACLE and SQLPLUS.
Thanks