인디노트

MySQL 에러 대처 : which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 본문

개발 플랫폼 및 언어

MySQL 에러 대처 : which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

인디개발자 2017. 5. 9. 08:37

MySQL 5.7.5+ 이후의 버전에서 다음과 같은 에러가 발생하면

which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by


my.cnf 에 다음과 같은 내용을 추가해 준다.


[mysqld]

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

반응형
Comments