MySQL GROUP_CONCAT 최대 결과 길이 변경하는 방법
페이지 정보
본문
GROUP_CONCAT()여러 행을 단일 문자열로 변환하기 위해 MySQL 쿼리에서 사용 하고 있습니다. 기본값은 최대 1024문자입니다.
The maximum permitted result length in bytes for the GROUP_CONCAT() function. The default is 1024.
group_concat_max_len이 제한을 늘리기 위해 매개 변수 를 변경할 수 있습니다.
MySQL 5.7 에서 최대값이 대폭 확장되었습니다
1. php 수정
// 해당 세션에만 적용됨
$query = (" SET SESSION group_concat_max_len = @@max_allowed_packet; ");
mysql_query($query);
2. my.ini 수정
#my.ini
#/etc/mysql/my.cnf
# 변경하고자 하는 최대 값 // [mysqld] 하단에 추가
# GROUP_CONCAT()함수 에 허용되는 최대 결과 길이 (바이트)/기본값은 1024
group_concat_max_len=4M
참고자료
https://dev.uhoon.co.kr/entry/GROUPCONCAT-최대-결과-길이-변경하는-방법
https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_group_concat_max_len
https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_db&wr_id=207214
The maximum permitted result length in bytes for the GROUP_CONCAT() function. The default is 1024.
group_concat_max_len이 제한을 늘리기 위해 매개 변수 를 변경할 수 있습니다.
MySQL 5.7 에서 최대값이 대폭 확장되었습니다
Command-Line Format | --group-concat-max-len=# |
---|---|
System Variable | group_concat_max_len |
Scope | Global, Session |
Dynamic | Yes |
Type | Integer |
Default Value | 1024 |
Minimum Value | 4 |
Maximum Value (64-bit platforms) | 18446744073709551615 |
Maximum Value (32-bit platforms) | 4294967295 |
1. php 수정
// 해당 세션에만 적용됨
$query = (" SET SESSION group_concat_max_len = @@max_allowed_packet; ");
mysql_query($query);
2. my.ini 수정
#my.ini
#/etc/mysql/my.cnf
# 변경하고자 하는 최대 값 // [mysqld] 하단에 추가
# GROUP_CONCAT()함수 에 허용되는 최대 결과 길이 (바이트)/기본값은 1024
group_concat_max_len=4M
참고자료
https://dev.uhoon.co.kr/entry/GROUPCONCAT-최대-결과-길이-변경하는-방법
https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_group_concat_max_len
https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_db&wr_id=207214
댓글목록
등록된 댓글이 없습니다.