I have a select statement which is something like this
select col1 from table1 where cond1=true
This returns results like
col1
_____
5
5
6
3
but I want to change it to return me
5-5-6-3
Is this possible? If so how? Please let me know how to do this. Thanks in advance for your replies.