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?
11 Answer
Try
Select AVG(Cast(variable as Float)), SUM(variable) From Table 2
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?
1Try
Select AVG(Cast(variable as Float)), SUM(variable) From Table 2