YUKI’s DEV BLOG 💻
/
Coding Test
/
SQL 연습 및 코딩테스트
/
175. Combine Two Tables
Search
Share
175. Combine Two Tables
LeetCode - The World's Leading Online Programming Learning Platform
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
SELECT
p
.
firstName
,
p
.
lastName
,
a
.
city
,
a
.
state
FROM
Person p
LEFT
JOIN
Address a
ON
p
.
personId
=
a
.
personId
SQL
복사