【LeetCode】组合两个表(mysql)

 题目

【LeetCode】组合两个表(mysql)_第1张图片 【LeetCode】组合两个表(mysql)_第2张图片

编写解决方案,报告 Person 表中每个人的姓、名、城市和州。如果 personId 的地址不在 Address 表中,则报告为 null 。

以 任意顺序 返回结果表。

结果格式如下所示。

【LeetCode】组合两个表(mysql)_第3张图片

【LeetCode】组合两个表(mysql)_第4张图片

 

select  firstName ,lastName,city,state

from  Person

left join Address

on Person.personId = Address.PersonId

这段SQL代码是用来从person表中选择firstNamelastNamecitystate字段,并与Address表进行左连接(left join)。左连接会返回所有的person记录,即使在Address表中没有匹配的记录。 

具体方法参考:联表查询中的左联查询(left join )

https://blog.csdn.net/m0_67930426/article/details/134321937icon-default.png?t=N7T8https://blog.csdn.net/m0_67930426/article/details/134321937

你可能感兴趣的:(Leetcode,leetcode)