반응형
https://school.programmers.co.kr/learn/courses/30/lessons/298519
group by를 사용해본 문제였습니다.
📕 풀이방법
📔 풀이과정
coalesce함수를 사용하면 NULL인 값을 특정한 값으로 처리할 수 있습니다.
fish_info를 fish_type에 대해 group by하고 length의 avg가 33이상인 id와 max length, fish_type을 select해줍니다.
📕 Code
📔 MySQL
select count(id) as fish_count, max(coalesce(length,10)) as max_length, fish_type
from fish_info
group by fish_type
having avg(coalesce(length,10)) >= 33
order by fish_type
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.