select a.id
from app a, account b
where a.id = b.id(+);
ID
----------
1
3
select a.id
from app a, account b
where b.id(+) = a.id;
ID
----------
1
3
select a.id
from app a left outer join account b
on a.id = b.id;
ID
----------
1
3
select a.id
from account b right outer join app a
on a.id = b.id;
ID
----------
1
3