반응형
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
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > SQL' 카테고리의 다른 글
(SQL) - LeetCode (easy) 1795. Rearrange Products Table (0) | 2024.08.07 |
---|---|
(SQL) - LeetCode (easy) 1731. The Number of Employees Which Report to Each Employee (0) | 2024.06.26 |
(C++) - LeetCode (easy) 1633. Percentage of Users Attended a Contest (0) | 2024.05.16 |
(SQL) - LeetCode (easy) 1527. Patients With a Condition (0) | 2024.04.19 |
(SQL) - LeetCode (easy) 1507. Reformat Date (0) | 2024.04.13 |