코딩테스트 연습 > SELECT > 아픈 동물 찾기 https://school.programmers.co.kr/learn/courses/30/lessons/59036
where 절에서 intake_condition = "Sick" 인 동물의 아이디와 이름을 조회한다.
SELECT animal_id, name from animal_ins where intake_condition = "Sick" order by animal_id asc