728x90
반응형

MYSQL 에서 GROUP_CONCAT 함수를 사용시

#HY000Row 4611 was cut by GROUP_CONCAT() 

같은 에러가 날 경우가 있습니다. 

 

이때에는

https://stackoverflow.com/questions/7208773/mysql-row-30153-was-cut-by-group-concat-error

 

MySQL "Row 30153 was cut by GROUP_CONCAT()" error

I have a function listed below. When I call it with the LIMIT set at 0,60 as seen below, it works fine. However, whenever I increase that LIMIT to 70 or higher, or even remove the LIMIT, MySQL errors

stackoverflow.com

이 에러는 그룹콘캣 사용시 CONCAT 되는 문자열이 너무 길 경우 발생하는 에러인데요

위의 링크된 글을 참조하여

 

SET group_concat_max_len=150000;

 

의 명령어로 group concat의 max length 를 늘려주어

해결할 수 있습니다.

728x90
반응형

+ Recent posts