Leetcode PHP題解--D91 175. Combine Two Tables

D91 175. Combine Two Tables

題目連接

175. Combine Two Tablessql

題目分析

這個題目比較簡單,就是簡單的連表查詢。.net

思路

以person表爲出發點,於address表join。join依據是personId。code

最終代碼

# 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

相關文章
相關標籤/搜索