mysql 사용 시
SELECT animal_type, IFNULL(name, 'No name') AS name, sex_upon_intake
FROM animal_ins
ORDER BY animal_id
oracle 사용 시
SELECT animal_type, NVL(name,'No name'), sex_upon_intake
FROM animal_ins ORDER BY animal_id
!!주의 NVL 은 오라클 고유의 명령어 이다. 호환이 힘듦
'코테 > 프로그래머스' 카테고리의 다른 글
제일 작은 수 (0) | 2020.12.30 |
---|---|
문자열 내 마음대로 정렬하기 (0) | 2020.12.30 |
프로그래머스 lv2 중복 제거하기 (0) | 2020.12.29 |
동명 동물 수 찾기 (0) | 2020.12.29 |
고양이와 개는 몇 마리 있을까? (0) | 2020.12.29 |