MySQL에서 ONLY_FULL_GROUP_BY 모드가 활성화되어 있을 때, GROUP BY 절에서 집계 함수 없이 포함되지 않은 컬럼을 SELECT 절에 사용할 경우, 다음과 같은 오류가 발생할 수 있습니다. ... which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by ... 아래 예시 쿼리에서는 fish_name이 GROUP BY 절에 포함되지 않아 오류가 발생합니다.SELECT COUNT(*) AS fish_count, n.fish_name -- 오류 원인FROM fish_name_info AS nJOIN fish_i..