I want to merge three record into one one.
My query is like this : select Value from table where ID '1'
For now I have the following result :
A
B
C
Is it possible to have the result like
Value1|Value2|Value3
A | B | C
Thanks in advance.