I have a table below:
words |
---|
'Hello' |
'Big' |
'World' |
And I would like to return all these words into one sentence using a simple MySQL query. See below:
sentence |
---|
'Hello Big World. ' |
How do I return all words in a column into one sentence?
*Note that the column words can have any number of words in it. Not just 3.