MYSQL数据库笔记十(JOIN)

  1、 select * from tb_emp; select * from tb_dept; select * from tb_emp,tb_dept; select * from tb_emp a inner join tb_dept b on a.deptid = b.id;
相关文章
相关标签/搜索