Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a sample data:

table(id, name) with name(varchar(255))

with data is

table(1, 'test1')
...
     (999, 'test999')
...

Query is Select GROUP_CONCAT(name) AS name FROM table And result is test1test2...test155 => can't get all name of table table, How to fix it ?

share|improve this question
GROUP_CONCAT has its place but don't you just want a select and a loop. the size is limited by the variable "group_concat_max_len" --dev.mysql.com/doc/refman/5.0/en/… – Dagon Jul 30 '12 at 3:38

1 Answer

try increasing the size of group_concat_max_len in your SESSION before query as:

SET SESSION group_concat_max_len = 1000000;

MySQL manual for group_concat_max_len

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.