본문 바로가기

algorithm

[programmers] MySQL - Lv.1 나이 정보가 없는 회원 수 구하기 (is null)

문제

 

 

 

 

 

풀이

 

SELECT count(*) from user_info
where age is null;