How to set GLOBAL group_concat_max_len

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

+3
source share
2 answers

Could you just fulfill the request?

$query = 'SET GLOBAL group_concat_max_len=15000';

mysql_query($query);
+6
source

Run this as a query using mysql_query()from PHP. This works for me.

You must do this as root, otherwise it will be falter error: Access denied.

+2
source

Source: https://habr.com/ru/post/1712047/


All Articles