SELECT AVG(variable) AS Expr1, SUM(variable) AS Expr2 FROM ......
result for AVG is 2, but it is not true, it must be 2.95. What is the problem, any idea?
Try
Select AVG(Cast(variable as Float)), SUM(variable) From Table
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
3100 times
active