T-SQL 舍入的正确方法

发布于 2024-08-14 03:38:05 字数 216 浏览 3 评论 0原文

T-SQL 中以下正确的方法是什么?:

sum(rounded(fractions,2))round(sum(offractions),2) ta!

我尝试了这两种方法,但每种方法的总结果仍然不同。我不知道是否需要在某个地方截断。

我想要 x, y * @v = z,这样 sum(x) * @v = sum(z)。

what's the correct approach in T-SQL for the following?:

sum(rounded(fractions,2)) or round(sum(of fractions),2) ta!

I've tried both approaches and got my total still end up with a different result for each. I don't know if I need to truncate somewhere.

I want x, y * @v = z, so that sum(x) * @v = sum(z).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故笙诉离歌 2024-08-21 03:38:05
round(sum(of fractions),2)

是最准确的,因为您只在最后舍入一次。
另一方面,您在求和之前首先对每个单独的值进行舍入,因此最终结果很可能整体上不太准确。

编辑:非常基本的示例:

DECLARE @Data TABLE (Val DECIMAL(9,2))
INSERT @Data VALUES (1.15)
INSERT @Data VALUES (1.15)
INSERT @Data VALUES (1.15)

SELECT ROUND(SUM(Val), 1) As Sum1, SUM(ROUND(Val, 1)) AS Sum2
FROM @Data

给出 Sum1=3.50 和 Sum2=3.60。
1.15+1.15+1.15 = 3.45(真实总计)。因此,Sum1 显然更准确

round(sum(of fractions),2)

is most accurate, as you're only rounding once, right at the very end.
The other way, you are rounding each individual value first before summing so the end result will more than likely be less accurate all round.

Edit: very basic example:

DECLARE @Data TABLE (Val DECIMAL(9,2))
INSERT @Data VALUES (1.15)
INSERT @Data VALUES (1.15)
INSERT @Data VALUES (1.15)

SELECT ROUND(SUM(Val), 1) As Sum1, SUM(ROUND(Val, 1)) AS Sum2
FROM @Data

gives Sum1=3.50 and Sum2=3.60.
1.15+1.15+1.15 = 3.45 (true total). Therefore, Sum1 is quite obviously more accurate

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文