本文介绍了使用join命令。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 如果我们有两个表empolyee和部门有一个公共列deptid。 我们检索数据 1 select *来自员工,employee.deptid = department.id的部门; 2从员工加入部门中选择* employee.deptid = department.id; 所以哪个选项更好,有什么区别if we having two tables empolyee and department with one common column deptid.we retrieve data by 1 select * from employee, department where employee.deptid=department.id;2 select * from employee join department where employee.deptid=department.id;so which option is better and what is the difference推荐答案 这篇关于使用join命令。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-31 12:42