|
This is probably an easy fix but I can't seem to get it working. I want to divide column A by 10 but I want my new column to show the decimal places. Right now it is showing 5 deciaml places but only as zero. When I divide 3/10 I want the new column to show 0.3 but right now its just showing 0.00000
(comments are locked)
|
|
Cast the column before the divide without it, it is doing integer division 3/10 = 0 then casting that as decimal(10,5) = 0.00000 @Kev Riley But this will definitely result in more than 5 decimal digits in the answer, so using 10.0 instead of 10 and only then casting to decimal(10, 5) could be a better choice.
Oct 11 '11 at 08:47 AM
Oleg
@Oleg yes it does, but I was just trying to show the OP where they had gone wrong - hopefully it will serve as a learning exercise and the OP can rework the query to suit their requirements. If 10 wasn't hard-coded and was an int variable or another column, changing it to 10.0 isn't as easy, and you would be back to casting/converting either the divisor or the dividend to a decimal type. Hopefully all the answers here show that :)
Oct 11 '11 at 08:57 AM
Kev Riley ♦♦
(comments are locked)
|
|
This happens because your ColumnA is int and 10 is implicitly int as well. Try this instead, and you will get results you want: The idea is that when you divide by 10.0 rather than by 10 then you avoid the integer division because the decimals are higher in the food chain than integers. Oleg
(comments are locked)
|
|
You need to cast each number to decimal as well as the total, for example:
(comments are locked)
|

