语法:
隐式内连接:select 字段列表 from 表1,表2 where 条件..;
显式内连接:select 字段列表 from 表1【inner】join 表2 on 连接条件...;
-- A:隐式内连接实现
select tb_dept.name,tb_emp.name
from tb_emp,tb_dept
where tb_emp.dept_id=tb_dept.id;
-- 别名
select e.name,d.name
from tb_emp e,tb_dept d
where e.dept_id=d.id;
-- B:显式内连接实现
select te.name,td.name
from tb_emp te
inner join tb_dept td on te.dept_id=td.id;