175. Combine Two Tables 發表於 2023-02-13 | 分類於 leetcode problemsolutionJOIN 1234567# Write your MySQL query statement belowselect a.firstName, a.lastName, b.city, b.statefrom Person as aLEFT JOIN Address as bON a.personId = b.personId;