[프로그래머스_SQL] 이름이 있는 동물의 아이디 SELECT ANIMAL_ID from ANIMAL_INS where NAME is not null order by ANIMAL_ID ▶ NULL값이 아님을 조건으로 주기 : is not NULL where NAME is not NULL ▶ 오름차순으로 정렬하기 : order by 컬럼명 order by ANIMAL_ID • programming language/SQL 2024.01.03