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 A;
ID NAME
---------- -----
1 john
2 jane
3 jack
3 rows selected.
SELECT * FROM B;
ID NAME
---------- -----
1 john
2 jane
3 jack
5 jim
6 mike
7 tom
6 rows selected.
SELECT A.ID,A.NAME
FROM A,B
WHERE A.ID = B.ID
/
ID NAME
---------- ------
1 john
2 jane
3 jack
3 rows selected.
select a.id, a.name
from a a
inner join b on a.id=b.id
select a.id, a.name
from a a
inner join b on a.id=b.id
/
ID NAME
---------- -----
1 john
2 jane
3 jack
3 rows selected.
select DISTINCT a.id, a.name
...