[TIL] 23.04.25

문종현·2023년 4월 25일
0

TIL

목록 보기
108/119
post-custom-banner

👉 오늘 한 일

  • 리트코드 SQL 문제 풀이

리트코드 SQL

1. Combine Two Tables(175)

  • Easy

  • https://leetcode.com/problems/combine-two-tables/

  • person 테이블에 있는 컬럼인 성(firstname)과 이름(lastname)을 모두 불러오고 address에는 정보가 없는 데이터들을 null로 처리하기 위해 personid를 키로 LEFT JOIN 사용

SELECT firstName,
    lastName,
    city,
    state
FROM person p
LEFT JOIN address a
    ON p.personId = a.personId
profile
자라나라 새싹새싹🌱

0개의 댓글