Skip to content

Commit 9923424

Browse files
Create combine_tables.sql
1 parent c61c161 commit 9923424

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

combine_tables.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Write your MySQL query statement below
2+
SELECT firstName, lastName, city, state
3+
FROM Person
4+
LEFT JOIN Address
5+
ON Person.personID = Address.personID;

0 commit comments

Comments
 (0)