Leetcode Note: MySQL Combine Two Tables

Combine Two Tables - LeetCode
https://leetcode.com/problems/combine-two-tables/

  • MySQL で取り組んだメモ

所感

  • ついに SQL の問題がきた
  • 個人的に PostgreSQL が学びたいが LeetCode 側で提供されていないので MySQL でやっていくことにする

回答

Really cute solution - LeetCode Discuss
https://leetcode.com/problems/combine-two-tables/discuss/1071262/Really-cute-solution

SELECT Person.FirstName, Person.LastName, Address.City, Address.State
FROM Person LEFT JOIN Address
ON Person.PersonId = Address.PersonId

SQL における JOIN あれこれ