목차
https://school.programmers.co.kr/learn/courses/30/lessons/276036
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
'코딩테스트[파이썬] > 프로그래머스 sql 고득점 kit' 카테고리의 다른 글
[다시보기]IS NULL업그레이드 할 수 없는 아이템 구하기 (0) | 2024.02.23 |
---|---|
[다시보기]IS NULL - ROOT 아이템 구하기 (0) | 2024.02.23 |
[다시 보기]GROUP BY - 가격대 별 상품 개수 구하기 (0) | 2024.02.23 |
[다시보기 변수 사용]GROUP BY - 입양 시각 구하기(2) (0) | 2024.02.23 |
GROUP BY - 입양 시각 구하기(1) (0) | 2024.02.23 |