The SQL is valid ... what would not bevalid would be:To do the above you would outerjoin one table to another in an inline view, then outerjoin the inline view to the third tableCode:SELECT e.empid, e.empname, d.deptname, c.clubname FROM emp e, dept d, club c WHERE e.deptid(+) = d.deptid AND e.clubid(+) = c.clubid




Reply With Quote