When I try to convert values from decimal to float, they are shown with exponential values
When I converted numeric to decimal values then they show with .00 fractional, but I required only in numeric.
check blow mention query.
select  cast(CAST(435468867990778789.89 as decimal(35, 2))as float) as APPARENTWACTIMP
select  CAST(43546886799090787 as decimal(35, 2))as APPARENTWACTIMP
select  CAST(43546886799090787 as decimal(35, 2))as APPARENTWACTIMP
select CAST(43546886799090787.89 as float)
Above Query result are
4.35468867990779E+17
43546886799090787.00
43546886799090787.00
4.35468867990908E+16
But I require a result like "435468867990778789.89".
 
     
     
    