Hello,
I have select:
select columns
from table a
left join table2 b on(some complex join);
This select works, then why can't you create a view from it!?
ORA-01799: a column may not be outer-joined to a subquery
That it doesn't work I know, but what is the reason for this? anyone know?
;)