프론트 개발자에게 갑자기 뷰 조회가 안된다는 문의가 왔다. 뭐지? 분명 로컬에세 테스트 다 하고 올렸는데?? 그래서 에러 로그를 확인해보니 다음과 같은 문구가 찍혀있었다. * GROUP BY 쿼리 에러 Expression of SELECT list is not in GROUP BY clause and contains nonaggregated column which is not functionally dependent on columnsin GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 해당 문제는 mysql 5.7이상 버전부터 발생하는 문제였다. 즉 querydsl의 문제가 아니였음. 즉 mysql 설정을 변경하거나 grou..