[프로그래머스/SQL]조건에 맞는 회원수 구하기

gov's avatar
Dec 06, 2024
[프로그래머스/SQL]조건에 맞는 회원수 구하기
Contents
문제풀이

문제

notion image

풀이

betwee A and B : a와 b 사이의 값
SELECT count(user_id) from user_info where JOINED between '2021-01-01' and '2021-12-31' and age between 20 and 29 ;
Share article

goho