728x90
반응형

Expression  of SELECT list is not in GROUP BY clause and contains nonaggregated column which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

 

원인

GROUP BY 컬럼 사용 시 SELECT 가능한 컬럼은 GROUP BY에 나열된 컬럼과 집계 함수(SUM, COUNT 등)만 가능

그 외에 컬럼을 SELECT 한 경우 에러 발생

 

해결 방법

GROUP BY 에 모든 SELECT 컬럼 적어주기

반응형
복사했습니다!