码迷,mamicode.com
首页 > 其他好文 > 详细

175. 组合两个表

时间:2021-01-06 12:09:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:arch   inf   write   img   ima   tables   mysq   left join   左连接   

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
// 
// ?? 729 ?? 0

MySql解题 Left Join 左连接

# Write your MySQL query statement below
select FirstName, LastName, City, State
from Person t1
left join Address t2 on t1.PersonId = t2.PersonId

技术图片

完!

175. 组合两个表

标签:arch   inf   write   img   ima   tables   mysq   left join   左连接   

原文地址:https://www.cnblogs.com/nayou/p/14225350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!