SELECT GROUP_CONCAT(DISTINCT(fullname) SEPARATOR ';')AS "FULLNAMES"
FROM Users;
I want to retrieve the fullnames of Users in a single row. However, the statement gives an incomplete result returning only the first 254 characters.
Is it possible to surpass this limitation?
Some might suggest to use the statement below instead and iterate through the result in my application but there's something that I would like to know.
SELECT DISTINCT fullname
FROM Users;