There is a table with user messages. user_id | message. Can you please tell me how to make a string merge - select all the rows of a single user_id, merge the message field, create one new string, and delete the old ones? Tried to do with GROUP_CONCAT, but it does not work.
messageSEPARATOR ',') FROMtableWHERE user_id = xxx - Vlad