코딩테스트 연습 > SELECT > 어린 동물 찾기
https://school.programmers.co.kr/learn/courses/30/lessons/59037

SELECT animal_id, name
from animal_ins
where intake_condition != "Aged"
order by animal_id asc
이외에도
where not intake_condition = "Aged"
where intake_condition Not in ("Aged")
도 가능하다.