加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

数据库多表连接查询

发布时间:2020-12-12 00:02:47 所属栏目:MySql教程 来源:网络整理
导读:span style="color:rgb(57,57,57);font-family:Tahoma;line-height:18px;"学习数据库查询的时候对多表连接查询的有些概念还比较模糊。而连接查询是在数据库查询操作的时候肯定要用到的。对于此概念? span style="color:rgb(57,57);font-family:Tahoma;line-h

<span style="color:rgb(57,57,57);font-family:Tahoma;line-height:18px;">学习数据库查询的时候对多表连接查询的有些概念还比较模糊。而连接查询是在数据库查询操作的时候肯定要用到的。对于此概念?
<span style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">我用通俗一些的语言和例子来进行讲解。这个例子是我讲课的时候经常采用的例子。?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">首先我们做两张表:员工信息表和部门信息表,在此,表的建立只为讲述连接的概念,所以字段非常的简单?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">EmployeeTB(员工信息表):?
<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">employeeid employeename deptid?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0001? 张三? 01?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0002? 李四? 01?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0003? 王五? 02?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0004? 赵六? 02?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0005? 郑七? NULL?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">DeptTB(部门信息表)?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">deptid? deptname?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">01? 技术部?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">02? 市场部?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">03? 工程部?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">我们现在需要进行连接查询,连接两张表检索数据。分别检索员工信息表的员工编号、员工姓名和部门信息表中的部门名称。?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">显然,两个表的连接条件是 员工表的部门编号=部门表的部门编号?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">注意:郑七不属于任何部门(新来的员工,还没有分配到任何的部门),而工程部不存在任何的员工(比如是一个新成立的部门,还没有员工)?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">1、内连接查询?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">我们可以有两种方式,这两种是等效的?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">一种是:SELECT e.employeeid,e.employeename,d.deptname FROM EmployeeTB AS e,DeptTB AS d WHERE e.deptid=d.deptid?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">另外一个是:SELECT e.employeeid,d.deptname FROM EmployeeTB AS e INNER JOIN DeptTB AS d ON e.deptid=d.deptid?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">检索的结果都是:?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">employeeid employeename deptname?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0001? 张三? 技术部?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0002? 李四? 技术部?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0003? 王五? 市场部?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">0004? 赵六? 市场部?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">而“郑七”和“工程部”的信息是不会检索出来。因为采用内连接计算的时候必须要保证连接的条件e.deptid=d.deptid匹配,结果才会被检索出来。当我们连接两张检索数据的时候,检索的方式是首先逐行扫描“员工信息表”中的记录,然后根据连接条件来决定此记录是否被检索。比如对于张三,这条记录的deptid是01(部门编号),它在部门表中能找到和它匹配的编号01,而编号01的部门名称(deptname)是“技术部”所以张三这条记录会被检索,最终的结果肯定是:?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">同样,李四、王五、赵六也能。但是郑七的部门编号是NULL,它在部门信息表中找不到匹配的项(因为部门信息表中不存在部门编号为NULL的部门),所以郑七不会被检索。?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">同理,没有任何人员的部门编号为03,所以工程部的记录也不会被检索?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">2、左外联结?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">但是有些情况下,我们需要知道所有员工的信息,即使他不属于任何部门。这样我们就可以采用外连接,在这里为左外连接,也就是连接中的左表的表中的记录,无论能不能在右表中找到匹配的项,都要检索,如果没有匹配的项目,那么右表中的字段值为NULL(空),在这里就代表,此员工不属于任何部门。?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">检索语句为:?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">SELECT e.employeeid,d.deptname FROM EmployeeTB AS e LEFT OUTER JOIN DeptTB AS d ON e.deptid=d.deptid?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">但是在这里,工程部同样不会被检索,因为,deptname是在连接的右边的表中,“工程部”在左表中不存在任何的记录,所以不会被检索。这里关注的是“连接中的左边的表”?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">3、右外连接?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">有时,我们需要知道,全部部门的信息,即使它没有任何的员工。在我们的查询中部门表在连接的右边,如果我们想知道右边表中的所有记录信息,那么就可以采用右外连接,如果此记录在左边的表中找不到匹配项,则相应字段(employeeid,employeename)为NULL?<br style="color:rgb(57,d.deptname FROM EmployeeTB AS e RIGHT OUTER JOIN DeptTB AS d ON e.deptid=d.deptid?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">NULL? NULL? 工程部?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">但在这里,郑七是不会被检索了,因为它在右表中找不到匹配项,这里关注的是“连接中的右边的表”?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">4、完全外连接?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">如果我们想知道所有的记录呢?无论员工有没有部门,部门有没有员工,我们都需要检索。这里就可以使用完全外连接。关注连接中的两部分。如果没有部门,部门为空,没有员工,员工信息为空。?<br style="color:rgb(57,d.deptname FROM EmployeeTB AS e FULL OUTER JOIN DeptTB AS d ON e.deptid=d.deptid?<br style="color:rgb(57,57);font-family:Tahoma;line-height:18px;">NULL? NULL? 工程部?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读