Given data such as
Type Value
A This
A is
B Will
A a
B this
A test
B work
I would like to end up with
Type Value
A This is a test
B Will this work
Is this possible? Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use GROUP_CONCAT().
Ensuring the words are concatenated in the order you want can be tricky, however.
GROUP_CONCAT()has anORDER BYclause (see the docs) but your example doesn’t include any column that can be used to determine the order. Relying on the physical storage order isn’t reliable.