MySQL How to prevent string truncation

QuestionsMySQL How to prevent string truncation
sethbeckerman5 Staff asked 6 years ago

I have a SELECT statement in MySQL 5.6 which uses the group_concat function to create a delimited string from many database rows in a table. The length of the string should be several thousand characters in length, but MySQL seems to be automatically truncating the resulting string at 2048 characters.
How can I prevent this from happening?


View on Stack Overflow