Hi again...
i have an error come up when i try the following code...
select L.BLDG_CODE, L.ROOM, T.TERM_DESC, C.CALL_ID, CS.SEC_NUM, CS.DAY, CS.TIME
from LOCATION L, TERM T, COURSE C, COURSE_SECTION CS
where L.LOC_ID = CS.LOC_ID
and T.TERM_ID = CS.TERM_ID (+)
and C.COURSE_ID = CS.COURSE_ID (+);
but the fact is there needs to be an outer join on both.
so how do i implement more than one outer join within the one query?
any ideas - thankyou in advance.
-jasper