HI,
I have table Org, contains column unit_inc.
Unit_inc has NUMBER datatype contains data in number format like :
unit_inc
1
2
3
1
10.
I have to convert this data into decimal , so final output would be like this:
1.0
2.0
3.0
1.0
10.0
I tried with to_char function I got the solution but I m not able to insert the same value into column who has NUMBER datatype. if , I converted it into NUMBER format then decimal value not comes.
So could help me to overcome this issue and send decimal value e.g.: 1.0 . 2.0 etc. into final target.
Thanks in advance.