Join
Inner Join
조인 조건을 만족하는 경우만 조회한다.
Outer Join
조인 조건을 만족하지 않는 행도, 없는 컬럼을 NULL로 표시한다. 예를 들어 아래와 같이 두 테이블이 있는 경우
A
email | name |
example@example.com | example |
test@test.com | test |
B
email | birth_day |
example@example.com | 1998.01.08 |
admin@admin.com | 2000.01.01 |
select A.email, A.name, B.birth_day from A
left outer join B
on A.email = B.email
SQL
복사
email | name | birth_day |
example@example.com | example | 1998.01.08 |
test@test.com | test | NULL |