Many times we have requirements of some calculations amongst different fields in Tables. One of the software developers here was trying to calculate some fields having integer values and divide it which gave incorrect results in integer where accurate results including decimals was expected.
Something as follows,
Example,
USE [AdventureWorks]
GO
CREATE TABLE [dbo].ConvertExample(
[ID] [int] NULL,
[Field1] [int] NULL,
[Field2] [int] NULL,
[Field3] [int] NULL,
[Field4] [int] NULL
)
GO
INSERT INTO [dbo].ConvertExample
VALUES (1,30,40,60,80)
GO
INSERT INTO [dbo].ConvertExample
VALUES (2,20,10,50,80)
GO
INSERT INTO [dbo].ConvertExample
VALUES (3,15,140,90,60)
GO
INSERT INTO [dbo].ConvertExample
VALUES (1,60,0,5,2)
GO
SELECT *
FROM [dbo].ConvertExample
GO
SELECT (SUM(Field1)+SUM(Field2)+SUM(Field3))/SUM(Field4)
AS AnswerInt
FROM [dbo].ConvertExample
GROUP BY ID
GO
However, We need to CAST or CONVERT the numerator to solve this or we can say that to get the results we wanted.
Example using CAST
SELECT CAST((SUM(Field1)+SUM(Field2)+SUM(Field3))AS FLOAT)/SUM(Field4) AS AnswerFloat1
FROM [dbo].ConvertExample
GROUP BY ID
GO

Example Using CONVERT:
SELECT CONVERT(FLOAT,(SUM(Field1)+SUM(Field2)+SUM(Field3)))/SUM(Field4) AS AnswerFloat2
FROM [dbo].ConvertExample
GROUP BY ID
GO

Conclusion
When we expect the results in floating or decimals then we need to convert or cast the numerator part to get the accurate results with FLOAT or DECIMAL Whichever needed.
Reference : Pinal Dave (http://blog.SQLAuthority.com)












Nice post and something that is very much useful in the day-to-day programming life.
Just wanted to add to what is already explained, that, SQL Server automatically does a cast to the data type having the highest precedence. So the result of INT and INT will be INT, but INT and FLOAT will be FLOAT because FLOAT has a higher precedence. If you want a different data type, you need to do an EXPLICIT cast.
For example:
SELECT 100/3 AS Result
/*
Result
———–
33
*/
SELECT 100/3.0 AS Result
/*
Result
—————————————
33.333333
*/
The precedence of each data type is documented here: http://msdn.microsoft.com/en-us/library/ms190309(SQL.90).aspx
Thank you Jacob,
I like your additional explanation. I just realize after reading your explanation that I should include your explanation in the post itself so it is visible to everybody right away.
Also this has brought another idea in my mind that when creating calculated field the same scenario happens. E.g. When we create calculated field from additions of INT it will give us final calculated field as INT. If we want that in another datatype we should have either follow your suggestion or CAST them.
Regards,
Pinal
Sometimes I get lazy and just do
field = int column A / int column B * 1.0
Then I *think* I get float back
Certainly this produces a float, but the value depends on precedence of / & *, which is non-obvious to casual readers. I would specify A / (B * 1.0) or (A / B) * 1.0 or A * 1.0 / B. The first & third do what the original questioner wanted. The second does integer division and turns the answer into a float.
Certainly it produces a float, but I don’t think the value is what the original post wanted. The integer divide has to happen first, and the result of that is converted to float. A / (B * 1.0) and A * 1.0 / B b both perform floating point division.
> sqldf(“select 8 / 3 * 1.0″)
8 / 3 * 1.0
1 2
[...] 27, 2008 by pinaldave Yesterday I wrote post about SQL SERVER – Get Answer in Float When Dividing of Two Integer. I received excellent comment from SQL Server MVP Jacob Sebastian. Jacob has clearified the concept [...]
Thanks guys, you make a nice duet together :)
Very interesting about this precedence.
[...] SQL SERVER – Get Answer in Float When Dividing of Two Integer SQL SERVER – Puzzle – Computed Columns Datatype Explanation SQL SERVER – Puzzle – Solution – Computed Columns Datatype Explanation [...]
This has caught me many times…
Putting the 1.0 at the beginning of the line makes a difference:
declare @a int,@b int,@c float
set @a=1
set @b=2
select @a/@b – Result 0
select @a/@b*1.0 – Result 0.0
select 1.0*@a/@b – Result 0.500000
Excellent,
This one had me stumped.
To get a percentage with decimal places
100.0*@numerator/@denominator
where both are INT and extract as float.
Job done.
Thank you.
Thank You very much for this examples..I have tried i got answer..But one thing if i need 1.20 instead of 1.2089876 what i have to do?
select round(col,2)
Thanks for the post Dave et al. I must say, after beginning my professional career as a developer, your blog has been a top reference of mine (along with MSDN of ciurse) when I need help solving a problem with SQL.
hello sir my table is able to store the float value like 75.5 but if i am going to store like 125.00,50.00 etc it will store 125 , 50 not giving me decimal places
what is the solution if i want to store the values with 00 in decimal places?
thank you better than msdn