Suppose I have a table with only one column. When I query the table
SELECT COL1 FROM TABLE1;
This gives me the result
COL1
-------
VAL1
VAL2
VAL3
VAL4
...
But my requirement is to have the display in the format
VAL1 VAL2 VAL3 VAL4 ...
Is there a way to achieve the above?
Regards.
SELECT COL1 FROM TABLE1;
This gives me the result
COL1
-------
VAL1
VAL2
VAL3
VAL4
...
But my requirement is to have the display in the format
VAL1 VAL2 VAL3 VAL4 ...
Is there a way to achieve the above?
Regards.