SQL Server 删除/减少SQL中的小数位[已关闭]

bpsygsoo  于 2022-12-03  发布在  其他
关注(0)|答案(1)|浏览(123)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question
我想减少小数位在我的总和输出,但当我使用舍入功能,它只取代了零。
https://i.stack.imgur.com/ZDCYt.jpg
红色字体是我的预期输出
希望有人能帮忙提前谢谢

c3frrgcw

c3frrgcw1#

你不需要四舍五入,

SELECT CAST(357937.3365348376819244290 AS numeric(10,2))

将返回357937,34

相关问题