Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to SET GLOBAL group_concat_max_len

Tags:

php

mysql

What is the PHP code please to SET GLOBAL group_concat_max_len=15000 or SET SESSION group_concat_max_len=15000 with MySQL?


1 Answers

Could you just do a query?

$query = 'SET GLOBAL group_concat_max_len=15000';

mysql_query($query);
like image 119
alex Avatar answered Jan 21 '26 21:01

alex