Skip to content

Commit 58f6de5

Browse files
committed
Create 175-combine_two_tables.sql
1 parent 6fd2b5e commit 58f6de5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

175-combine_two_tables.sql

+5
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)