今天和大家聊的问题叫做 组合两个表 ,我们先来看题面:https://leetcode-cn.com/problems/combine-two-tables/
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
题意
编写一个 SQL 查询,满足条件:无论 person 是否有地址信息,都需要基于上述两表提供 person 的以下信息:FirstName, LastName, City, State
解题
https://blog.csdn.net/qq_41855420/article/details/100822827
题干要求我们获取每个person的FirstName, LastName, City, State四个信息,而FirstName, LastName在Person表,City, State两个信息在Address表,并且可以看出两表中都有PersonId这个字段,所以可以通过这个字段将两表进行连接。多表连接有sql92语法以及sql99语法,这里选择sql99语法。在sql99语法中,有内连接、左外连接,右外连接。
内连接主要是处理多表的交集问题,这道题显然不是,因为有些person(在Address表)没有地址信息,但是我们仍然需要提供FirstName, LastName, City, State四个信息,也就是说Person表是主表,所以这道题应该选择外连接。
#如果某个person在Address表中没有记录,则City、State为空 select p.FirstName, p.LastName, a.City, a.State from Person p #左外连接,person表是主表 left outer join Address a #连接条件,PersonId相同 on p.PersonId = a.PersonId;
好了,今天的文章就到这里,如果觉得有所收获,请顺手点个在看或者转发吧,你们的支持是我最大的动力 。