We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b5ec4 commit 6ca34c1Copy full SHA for 6ca34c1
Combine Two Tables/Combine_Two_Tables.sql
@@ -0,0 +1,5 @@
1
+# Write your MySQL query statement below
2
+select t1.FirstName, t1.LastName, t2.City, t2.State
3
+from Person t1
4
+left outer join Address t2
5
+on t1.PersonId = t2.PersonId;
0 commit comments