Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?

share|improve this question
What database? – Sasha Chedygov Jul 9 '09 at 7:49
What is the type of variable? I guess that it is an integer. Right? – luc Jul 9 '09 at 7:53

1 Answer

up vote 10 down vote accepted

Try

Select
    AVG(Cast(variable as Float)),
    SUM(variable)
From
    Table
share|improve this answer
it works, thanks :) – NetSide Jul 9 '09 at 7:55
cool no worries :) – Chalkey Jul 9 '09 at 7:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.