We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd2b5e commit 58f6de5Copy full SHA for 58f6de5
175-combine_two_tables.sql
@@ -0,0 +1,5 @@
1
+-- https://leetcode.com/problems/combine-two-tables/
2
+
3
+SELECT person.firstName, person.lastName, address.city, address.state
4
+FROM person
5
+left join address on person.personId = address.personId
0 commit comments