Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select * from app;
ID
----------
1
3
select * from account;
ID
----------
1
4
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
select a.id a_id, b.id b_id
from account b full outer join app a
on a.id = b.id;
A_ID B_ID
---------- ----------
1 1
4
3