Notice
Recent Posts
Recent Comments
Link
거의 알고리즘 일기장
프로그래머스 고득점 키트 _ IS NULL_MYSQL 본문
https://programmers.co.kr/learn/courses/30/parts/17045
1. 이름이 없는 동물의 아이디
1
2
3
4
5
|
select ANIMAL_ID
from ANIMAL_INS
where NAME is NULL
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
2. 이름이 있는 동물의 아이디
1
2
3
4
|
select ANIMAL_ID
from ANIMAL_INS
where NAME is not null
order by ANIMAL_ID
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
3. NULL 처리하기
1
2
3
4
5
|
select ANIMAL_TYPE,
case when NAME is null then 'No name' else NAME end NAME,
SEX_UPON_INTAKE
from ANIMAL_INS
order by ANIMAL_ID
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
반응형
'SQL 문제' 카테고리의 다른 글
프로그래머스 고득점 키트 _ String, Date_MYSQL (0) | 2020.04.24 |
---|---|
프로그래머스 고득점 키트_ JOIN_MYSQL (0) | 2020.04.24 |
프로그래머스 고득점 키트 _ GROUP BY_MYSQL (0) | 2020.04.23 |
프로그래머스 고득점 키트_ SUM, MAX, MIN_MYSQL (0) | 2020.04.23 |
프로그래머스 고득점 키트_ SELECT_MYSQL (0) | 2020.04.23 |
Comments