Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SELECT AVG(variable) AS Expr1, SUM(variable) AS Expr2 FROM ......
AVGの結果は2ですが、正しくないため、2.95である必要があります。問題は何ですか、何か考えはありますか?
試す
Select AVG(Cast(variable as Float)), SUM(variable) From Table