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.
2 parents 838d389 + fd21db4 commit 95aa06eCopy full SHA for 95aa06e
leetcode/sql/combine-two-tables.sql
@@ -0,0 +1,2 @@
1
+SELECT p.firstName, p.lastName, a.city, a.state
2
+FROM Person p LEFT OUTER JOIN Address a ON (p.personId = a.personId)
0 commit comments