PHP算法练习2:(175. 组合两个表)

Posted 花花妹子最努力~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP算法练习2:(175. 组合两个表)相关的知识,希望对你有一定的参考价值。

练习地址:https://leetcode-cn.com/problems/combine-two-tables/

表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

答案:

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

 

以上是关于PHP算法练习2:(175. 组合两个表)的主要内容,如果未能解决你的问题,请参考以下文章

文巾解题 175. 组合两个表

175. 组合两个表

175. 组合两个表

175. 组合两个表

LeetCode - 175. 组合两个表

LeetCode-Mysql练习1(175/176/177/178/184/185)(排名函数)