Lv1 프로그래머스(Programmers)[Mysql] 이름이 있는 동물의 아이디

"""
출처: 프로그래머스,
https://school.programmers.co.kr/learn/courses/30/lessons/59407
"""

"""
풀이 과정

SELECT ANIMAL_ID

from ANIMAL_INS

where NAME is not null

order by ANIMAL_ID asc

"""