Error Code: 1055. Expression #3 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mytest.match_0604.kills' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
only_full_group_by 모드는 데이터의 일관성을 유지하기 위해 도입된 엄격한 모드이며, 데이터베이스의 일관성과 정확성을 보장하기 위한 규칙
SHOW VARIABLES LIKE 'SQL_MODE';
명령어를 입력하여 sql 현재 모드를 파악하고 값을 복사SET SESSION sql_mode
의 값으로 only_full_group_by를 삭제 후 재설정