본문 바로가기

algorithm

[programmers] MySQL - Lv.1 조건에 맞는 회원수 구하기 (select)

문제

 

 

 

 

풀이
SELECT count(user_id) users from user_info
where year(joined) = 2021 and
      age >= 20 and age <= 29;​