pivot one single column into one row
Hi,
How can I turn a single column into a single row?
select sid from v$session
Rather than
sid
-----
1
2
3
...
I would like it to be
sid
------
1,2,3...
Thansk,
Sha
select sid from v$session
Rather than
sid
-----
1
2
3
...
I would like it to be
sid
------
1,2,3...
Thansk,
Sha
0