美文网首页Leetcode题解-PHP版
Leetcode PHP题解--D91 175. Combine

Leetcode PHP题解--D91 175. Combine

作者: skys215 | 来源:发表于2019-06-22 09:02 被阅读0次

    D91 175. Combine Two Tables

    题目链接

    175. Combine Two Tables

    题目分析

    这个题目比较简单,就是简单的连表查询。

    思路

    以person表为出发点,于address表join。join依据是personId。

    最终代码

    # Write your MySQL query statement below
    SELECT person.FirstName, person.LastName, address.City, address.State FROM person LEFT JOIN address ON address.personId = person.personId
    

    若觉得本文章对你有用,欢迎用爱发电资助。

    相关文章

      网友评论

        本文标题:Leetcode PHP题解--D91 175. Combine

        本文链接:https://www.haomeiwen.com/subject/dxkmqctx.html