sahernandez
Programmer
Hi , I have to JOIN a table with the condition OR, it's something like this:
select *
from tb1, tb2
where ( tb1.time_schedule = tb2.max_time(+)
or
tb1.time_real = tb2.max_time(+)
)
but ORACLE say, that I can't JOIN with a OR .
Any Idea to fix this problem.
Thxs
Alexander
select *
from tb1, tb2
where ( tb1.time_schedule = tb2.max_time(+)
or
tb1.time_real = tb2.max_time(+)
)
but ORACLE say, that I can't JOIN with a OR .
Any Idea to fix this problem.
Thxs
Alexander