We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86f2708 + 88e6cae commit 6ca4705Copy full SHA for 6ca4705
solution/0100-0199/0175.Combine Two Tables/Solution.sql
@@ -0,0 +1 @@
1
+select p.FirstName, p.LastName, a.City, a.State from Person p left join Address a on p.PersonId = a.PersonId;
0 commit comments