코딩테스트[파이썬]/프로그래머스 sql 고득점 kit

[다시보기]GROUP BY - 언어별 개발자 분류하기

softmoca__ 2024. 2. 23. 22:06
목차

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

 

프로그래머스

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

programmers.co.kr

 

 

 

 

 

 

with developer_skill as (
    select * from developers left join skillcodes on skill_code & code = code
)

select 
case
    when group_concat(category, ",") like "%Front End%" and group_concat(name, ",") like "%Python%" then "A"
    when group_concat(name, ",") like "%C#%" then "B"
    when group_concat(category, ",") like "%Front End%" then "C"
end as grade, id, email
from developer_skill
group by id, email
having grade is not null
order by grade,id