I need some assistance to figure out if its possible to get the output of a sybase sql query in pipe |
separated format.
select top 10 * from mytable
The data returned is as follows
I am using sybase ASE 15 as my DB to run queries.
name age number
sam 20 1233456
I need the data in below format
name|age|number
sam|20|123456
Thanks in advance