我正在学习《数据库系统概念》第六版。它以大学数据库为例。 该数据库的架构如下。粗体代表主键:
department(dept_name, building, budget) course(course_id, title, dept_name, credits) instructor(ID, name, dept_name, salary) section(course_id, sec_id, semester, year, building, room number, time_slot_id) teaches(ID, course_id, sec_id, semester, year) prereq(course_id, prereq_id)
在书中陈述了以下查询:
“列出教师的姓名以及他们所教课程的名称”。
这本书给出的答案是:
select name, title
from instructor natural join teaches, course
where teaches.course id = course.course id;
此外,作者写道:
”相比之下,以下SQL查询不会计算出相同的结果:
select name, title
from instructor natural join teaches natural join course;
要了解原因,请注意,讲师和教员的自然加入包含以下属性 (ID,姓名,部门名称,薪水,课程ID,秒ID),而课程关系包含 属性(课程ID,标题,部门名称,学分)。结果,这些自然加入 两个将要求来自两个输入的部门名称属性值是 相同,除了要求课程ID值相同。这个查询 然后将忽略所有(教师姓名,课程标题)对,其中教师 在教师自身部门以外的其他部门教课程。 另一方面,先前的查询正确地输出了这样的对。 “
现在,我尝试使用这两个查询来查看自己的区别。
mysql> select * from instructor;
+-------+------------+------------+----------+
| ID | name | dept_name | salary |
+-------+------------+------------+----------+
| 10101 | Srinivasan | Comp. Sci. | 65000.00 |
| 12121 | Wu | Finance | 90000.00 |
| 15151 | Mozart | Music | 40000.00 |
| 22222 | Einstein | Physics | 95000.00 |
| 32343 | El Said | History | 60000.00 |
| 33456 | Gold | Physics | 87000.00 |
| 45565 | Katz | Comp. Sci. | 75000.00 |
| 58583 | Califieri | History | 62000.00 |
| 76543 | Singh | Finance | 80000.00 |
| 76766 | Crick | Biology | 72000.00 |
| 83821 | Brandt | Comp. Sci. | 92000.00 |
| 98345 | Kim | Elec. Eng. | 80000.00 |
+-------+------------+------------+----------+
12 rows in set (0.00 sec)
mysql> select * from course;
+-----------+----------------------------+------------+---------+
| course_id | title | dept_name | credits |
+-----------+----------------------------+------------+---------+
| BIO-101 | Intro. to Biology | Biology | 4 |
| BIO-301 | Genetics | Biology | 4 |
| BIO-399 | Computational Biology | Biology | 3 |
| CS-101 | Intro. to Computer Science | Comp. Sci. | 4 |
| CS-190 | Game Design | Comp. Sci. | 4 |
| CS-315 | Robotica | Comp. Sci. | 3 |
| CS-319 | Image Processing | Comp. Sci. | 3 |
| CS-347 | Database System Concepts | Comp. Sci. | 3 |
| EE-181 | Intro. to Digital Systems | Elec. Eng. | 3 |
| FIN-201 | Investment Banking | Finance | 3 |
| HIS-351 | World History | History | 3 |
| MU-199 | Music Video Production | Music | 3 |
| PHY-101 | Physical Principles | Physics | 4 |
+-----------+----------------------------+------------+---------+
mysql> select * from teaches;
+-------+-----------+--------+----------+------+
| ID | course_id | sec_id | semester | year |
+-------+-----------+--------+----------+------+
| 76766 | BIO-101 | 1 | Summer | 2009 |
| 76766 | BIO-301 | 1 | Summer | 2010 |
| 10101 | CS-101 | 1 | Fall | 2009 |
| 45565 | CS-101 | 1 | Spring | 2010 |
| 83821 | CS-190 | 1 | Spring | 2009 |
| 83821 | CS-190 | 2 | Spring | 2009 |
| 10101 | CS-315 | 1 | Spring | 2010 |
| 45565 | CS-319 | 1 | Spring | 2010 |
| 83821 | CS-319 | 2 | Spring | 2010 |
| 10101 | CS-347 | 1 | Fall | 2009 |
| 98345 | EE-181 | 1 | Spring | 2009 |
| 12121 | FIN-201 | 1 | Spring | 2010 |
| 32343 | HIS-351 | 1 | Spring | 2010 |
| 15151 | MU-199 | 1 | Spring | 2010 |
| 22222 | PHY-101 | 1 | Fall | 2009 |
+-------+-----------+--------+----------+------+
15 rows in set (0.00 sec)
mysql> select name, title
-> from instructor natural join teaches, course
-> where teaches.course_id = course.course_id;
+------------+----------------------------+
| name | title |
+------------+----------------------------+
| Crick | Intro. to Biology |
| Crick | Genetics |
| Srinivasan | Intro. to Computer Science |
| Katz | Intro. to Computer Science |
| Brandt | Game Design |
| Brandt | Game Design |
| Srinivasan | Robotica |
| Katz | Image Processing |
| Brandt | Image Processing |
| Srinivasan | Database System Concepts |
| Kim | Intro. to Digital Systems |
| Wu | Investment Banking |
| El Said | World History |
| Mozart | Music Video Production |
| Einstein | Physical Principles |
+------------+----------------------------+
15 rows in set (0.00 sec)
mysql> select name, title
-> from instructor natural join teaches natural join course;
+------------+----------------------------+
| name | title |
+------------+----------------------------+
| Crick | Intro. to Biology |
| Crick | Genetics |
| Srinivasan | Intro. to Computer Science |
| Katz | Intro. to Computer Science |
| Brandt | Game Design |
| Brandt | Game Design |
| Srinivasan | Robotica |
| Katz | Image Processing |
| Brandt | Image Processing |
| Srinivasan | Database System Concepts |
| Kim | Intro. to Digital Systems |
| Wu | Investment Banking |
| El Said | World History |
| Mozart | Music Video Production |
| Einstein | Physical Principles |
+------------+----------------------------+
15 rows in set (0.00 sec)
从结果中我看不出有什么区别,而且我不明白为什么要有区别。 与书中所陈述的不同,讲师和教学的自然连接包含以下属性: ID,姓名,部门名称,薪水,课程ID,秒ID,学期,年份。
答案 0 :(得分:3)
这本书是正确的。这些查询不是等效的。样本数据( detp_name 值不同):
INSERT INTO course(course_id, title, dept_name, credits)
VALUES (1, 'Course_1', 'DeptX', 10);
INSERT INTO instructor(ID, name, dept_name, salary)
VALUES (1, 'Prof X', 'DeptY', 10000);
INSERT INTO teaches(ID, course_id, sec_id, semester, year)
VALUES (1, 1, 10,10,2000);
我个人不会使用任何建议的查询
-- mixing natural join with old-comma syntax
select name, title
from instructor natural join teaches, course
where teaches.course_id = course.course_id;
--Output
--name title
--Prof X Course_1
-- natural join(potentially dangerous-depends on names of columns)
select name, title
from instructor natural join teaches natural join course;
-- 0 rows selected
并将其重写为:
SELECT i.name, c.title
FROM instructor i
JOIN teaches t
ON t.ID = i.ID
JOIN course c
ON t.course_id = c.course_id;