I know how to concact two strings, but this one will be a bit more complicated, i guess it's a duplicate but i could not find it after an hour of search so....
Suppose i have a table like this :
ExempleTable
____________________
ID | TEXT |
___________________ |
1 | 'hello ' |
2 | 'how are '|
3 | 'you ?' |
I need a select that would return a single line containing :
'hello how are you ?'
I thought something like this would exist :
CONCATTEXT( SELECT text FROM ExampleTable) as sentence
But no... maybe it's a GROUP BY
matter ? I can't figure it out...