当前位置:   article > 正文

LeetCode刷题之数据库-175. 组合两个表

LeetCode刷题之数据库-175. 组合两个表

175. 组合两个表
难度:简单
https://leetcode-cn.com/problems/combine-two-tables/

  1. 题目
    在这里插入图片描述
    在这里插入图片描述
  2. 解题过程:
# Write your MySQL query statement below
select
    p.FirstName,
    p.LastName,
    a.City,
    a.State
from
    Person p left join Address a
    on p.PersonId=a.PersonId;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/727056
推荐阅读
相关标签
  

闽ICP备14008679号