scarletAni
Programmer
I have a table with values
1 the
1 value
1 is
1 one
2 the
2 value
2 two
I need the output as
1 The value is one
2 the value two
as in the character column containig some description needs to be concatenated. Its if it were an integer, then we can do a SUM and group by. Since its a character, how to achieve what I want ?
1 the
1 value
1 is
1 one
2 the
2 value
2 two
I need the output as
1 The value is one
2 the value two
as in the character column containig some description needs to be concatenated. Its if it were an integer, then we can do a SUM and group by. Since its a character, how to achieve what I want ?