Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 176 Bytes

File metadata and controls

8 lines (8 loc) · 176 Bytes

프로그래머스 59407

'이름이 있는 동물의 아이디'

SELECT ANIMAL_ID, NAME AS 'NAME'
FROM ANIMAL_INS
WHERE NAME IS NOT NULL
ORDER BY ANIMAL_ID ASC