I am having a problem searching multiple tables ,i have 2 tables
tblcourse
-courseid
-name
-status
tblenroll
-courseid(holds courseid from tblcourse)
-studentid
lets say a student has 1990 as student num and he registered to 2 courses in tblenrol
I want to get the name of the courses that 1990 has and the ones he aint subscribed to
the closest i get is a right outer join to tblcourses then i get the result i want, but once i attach a where clause it wont give me the rest of the courses that havent got his student number.
Any help!!