我不确定以前是否有人问过这个问题,但是如何将平均值四舍五入到 T-SQL 中最接近的整数?
I'm not sure if this has been asked before, but how do I get the average rounded to the closest integer in T-SQL?
这对它有用:
CONVERT(int,ROUND(AVG(CAST(COLUMN-NAME AS DECIMAL)) ,0))
难道没有更短的方法吗?
Isn't there a shorter way of doing it though?
这篇关于T-SQL 平均值四舍五入到最接近的整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!