We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86f2708 commit 88e6caeCopy full SHA for 88e6cae
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