티스토리 뷰
programmers.co.kr/learn/courses/30/lessons/59042
select b.animal_id, b.name
from animal_ins as a right join animal_outs as b on a.animal_id = b.animal_id
where a.animal_id is null
order by b.animal_id
또는
select a.animal_id, a.name
from animal_outs as a left join animal_ins as b on a.animal_id = b.animal_id
where b.animal_id is null
order by a.animal_id
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 루시와 엘라 찾기 - MySQL (0) | 2021.02.17 |
---|---|
[프로그래머스] 있었는데요 없었습니다 - MySQL (0) | 2021.02.17 |
[프로그래머스] NULL 처리하기 - MySQL (0) | 2021.02.17 |
[프로그래머스] 이름이 있는 동물의 아이디 - MySQL (0) | 2021.02.17 |
[프로그래머스] 이름이 없는 동물의 아이디 - MySQL (0) | 2021.02.17 |