TodaySQL 코드카타이력서 및 포트폴리오 정리 Today I Learned SQL 잡은 물고기의 평균 길이를 출력하는 SQL문을 작성해주세요.평균 길이를 나타내는 컬럼 명은 AVERAGE_LENGTH로 해주세요.평균 길이는 소수점 3째자리에서 반올림하며, 10cm 이하의 물고기들은 10cm 로 취급하여 평균 길이를 구해주세요. # 내가 작성한 쿼리with a as (select case when length is null then 10 else length end as lengthfrom fish_info)select round(avg(length),2) as AVERAGE_LENGTHfrom a# IFNULL 을 사용한 쿼리select round(avg(IFNULL(LENGTH,10)),2) as ..