LeetCode_Study_Plan/SQL
175. Combine Two Tables mysql
개발하는루루
2022. 9. 30. 14:37
https://leetcode.com/problems/combine-two-tables
select s.firstName, s.lastName, a.city, a.state from person s left join address a on s.personId = a.personId;