[Leetcode] 175. Combine Two Tables

bradley·2022년 6월 9일
1

SQL

목록 보기
1/5

Problem



Solution


1)

SELECT 
    firstName,
    lastName,
    city,
    state
FROM Person p
    LEFT JOIN Address a
    ON p.personId = a.personId
profile
데이터 엔지니어링에 관심이 많은 홀로 삽질하는 느림보

0개의 댓글