프로그래머스 SQL 고득점 Kit - SELECT: 12세 이하인 여자 환자 목록 출력하기 (MySQL, ORACLE)

728x90
728x90

문제

https://school.programmers.co.kr/learn/courses/30/lessons/132201?language=mysql

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

난이도

Level 1

 

풀이

MySQL

select pt_name, pt_no, gend_cd, age, ifnull(tlno, 'NONE') tlno
from patient
where age <= 12 and gend_cd = 'W'
order by age desc, pt_name;

 

ORACLE

select pt_name, pt_no, gend_cd, age, nvl(tlno, 'NONE') tlno
from patient
where age <= 12 and gend_cd = 'W'
order by age desc, pt_name;

정리

전화번호가 없는 경우는 'NONE'으로 표시해야 하는데, MySQL에서는 NVL 함수가 없어서 IFNULL 함수를 사용해야한다.

IFNULL(column, 'value') 함수는 column의 값이 null이면 'value'로 출력한다.

반응형