Dashboard Temp Share Shortlinks Frames API

HTMLify

Day 18
Views: 21 | Author: djdj
1
2
3
4
5
6
7
8
9
/*
	https://leetcode.com/problems/combine-two-tables/description
*/

# Write your MySQL query statement below
Select firstName, lastName, city, state 
FROM Person 
LEFT JOIN Address 
ON Person.personId = Address.personId;