LeetCode175組合二個表

題目:

表1: Person

+-------------+---------+
| 列名         | 類型     |
+-------------+---------+
| PersonId    | int     |
| FirstName   | varchar |
| LastName    | varchar |
+-------------+---------+
PersonId 是上表主鍵
表2: Address

+-------------+---------+
| 列名         | 類型    |
+-------------+---------+
| AddressId   | int     |
| PersonId    | int     |
| City        | varchar |
| State       | varchar |
+-------------+---------+
AddressId 是上表主鍵
 

編寫一個 SQL 查詢,滿足條件:無論 person 是否有地址信息,都需要基於上述兩表提供 person 的以下信息:

 

FirstName, LastName, City, State

思路一:題目中提示了,無論person是否有地址信息,都需要基於上述二表提供person的以下信息。。。。說明是以Person爲準,來對其他表進行左連接。

select FirstName,LastName,City,State from Person p left join Address a on p.PersonId=a.PersonId;

思路二:考慮數據非常多的情況下,將重複的數據去除:

select p.FirstName ,p.LastName,a.City ,a.State from Person p left join 
(select distinct personId,State,City from Address)   a on p.personId=a.personId;

 

發佈了105 篇原創文章 · 獲贊 2 · 訪問量 1982
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章