https://school.programmers.co.kr/learn/courses/30/lessons/59044
SELECT
i.name,
i.datetime
FROM
animal_ins i
LEFT JOIN
animal_outs o
ON
i.animal_id = o.animal_id
WHERE
o.animal_id is null
ORDER BY
i.datetime asc
LIMIT
3;
다행히 이제 레벨3 문제가 쉽다.
left outer join에서 교집합을 뺀 부분을 추출하는 것과
LIMIT 이 키였던 것 같다.