题目:
Table: Person
+————-+———+
| Column Name | Type |
+————-+———+
| PersonId | int |
| FirstName | varchar |
| LastName | varchar |
+————-+———+
PersonId is the primary key column for this table.
Table: Address
+————-+———+
| Column Name | Type |
+————-+———+
| AddressId | int |
| PersonId | int |
| City | varchar |
| State | varchar |
+————-+———+
AddressId is the primary key column for this table.
Write a SQL query for a report that provides the following information for each person in the Person table, regardless if there is an address for each of those people:
FirstName, LastName, City, State
Answer:
思路:因each person and regardless address,采用LEFT JOIN
# Write your MySQL query statement below
SELECT
FirstName,
LastName,
City,
State
FROM
person
LEFT JOIN address ON person.PersonId = address.PersonId
附SQL各种JOIN关系图:
还有下面这个图:


本文介绍了一种SQL查询技巧,使用左连接实现从Person表中检索每个人的姓名及对应的地址信息,即使某些人没有地址记录也能完整显示。
1877

被折叠的 条评论
为什么被折叠?



