코딩테스트 준비/SQL문법

[프로그래머스 LV5] - 상품을 구매한 회원 비율 구하기(join) SQL

SeoburiFaust 2024. 2. 17. 17:02

문제

https://school.programmers.co.kr/learn/courses/30/lessons/131534

 

프로그래머스

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

programmers.co.kr

접근방법

LV5라고 적혀있어서 쫄았는데, 풀만했다. 

코드

-- 코드를 입력하세요
SELECT year(sales_date) as year,
month(sales_date) as month,
count(distinct user_id) as purchased_users,
round(count(distinct user_id) / (select count(distinct user_id)
                        from user_info
                        where year(joined) = 2021), 1) as purchased_ratio
from user_info natural join online_sale
where year(joined) = 2021
group by year, month
order by year, month

개선할 점

count 함수 내에 distinct를 포함해야 유저 숫자를 셀 수 있는 데,

distinct를 적는 것을 빠뜨려서 계속 틀렸다.

 

count 사용할 때 distinct 적는 건 습관 들여야겠다.