t1
id
name
1a
2b
3c
cross join
inner join
outer join left
right
full
self join
select * from t1,t2
select m.ename,E.ENAME FRom emp e join emp m on m.empno=e.mgr
t2
id
name
2d
4e
5f
insert into t2 values(5,'f')
select * from t1
select * from t2
p m on m.empno=e.mgr
select * from t1,t2
select * from t1 join t2 on t1.id=t2.id
select * from t1 full outer join t2 on t1.id=t2.i
on t1.id=t2.id
er join t2 on t1.id=t2.id