Hello, I have a table with one column and i want to split it into 4 columns. Values are comma delimeted. Is there a way using SQL query alone?
Column1
======================
C,18432,6196,12236
E,409595,112464,297131
H,407548,11915,395633
I want the output to be:
Drive Capacity Used Free
C 18432 6196 12236
E 409595 112464 297131
H 407548 11915 395633
Any idea?
thanks
Column1
======================
C,18432,6196,12236
E,409595,112464,297131
H,407548,11915,395633
I want the output to be:
Drive Capacity Used Free
C 18432 6196 12236
E 409595 112464 297131
H 407548 11915 395633
Any idea?
thanks