일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- appres
- OSX
- MYSQL
- 앱리소스
- OTP
- fido
- kmip
- Nodejs
- MSYS2
- apple
- css
- 앱스토어
- Android
- SSH
- albumbook
- 인증
- 앨범북
- FIDO2
- Xcode
- SSL
- SwiftUI
- openssl
- 안드로이드
- otpkey
- SWIFT
- WebAuthn
- git
- MFA
- 2FA
- 애플
Archives
- Today
- Total
인디노트
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:37MySQL 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
반응형
'개발 플랫폼 및 언어' 카테고리의 다른 글
SQL JOIN (0) | 2017.05.14 |
---|---|
CentOS 에 MySQL 5.7 설치 (0) | 2017.05.10 |
OS X MySQL my.cnf 파일 위치 (0) | 2017.05.09 |
SSH config 파일 사용하여 편리하게 접속 (0) | 2017.05.08 |
SSH authorized_keys 에 정상적인 공개키를 설정해 놓았는데 클라이언트에서 개인키로 접속 못할 때 (0) | 2017.05.08 |
Comments