Hello, I need to run a report against a database, and I am having a difficult time thinking of a way to run a particular report. What I need to do is run a report which selects students that have no course registrations for three consecutive semesters.
The semester table includes the following columns:
semesterID,
semesterCode,
semesterName,
semStartDate,
semEndDate
The course registration table includes the following columns:
ID,
stuID,
course,
semesterCode,
credits,
regDate
I need help getting started because I am not sure where to begin to tackle this. Any help or direction is greatly appreciated.