gpt4 book ai didi

sql-server - SQL Server 中的 *UP* 舍入到最接近的 100

转载 作者:行者123 更新时间:2023-12-01 18:31:07 26 4
gpt4 key购买 nike

是否可以在 SQL Server 中轻松地将数字向上四舍五入到最接近的 100(或 1000、500、200 等)?

所以:

720 -> 800
790 -> 800
1401 -> 1500

最佳答案

以下内容应该有效。读完你的问题后,我不太确定你想要 100 返回什么。对于此 100,返回 100。

select floor((X + 99) / 100) * 100;

这给出了以下结果:

0 -> 0
1 -> 100
99 -> 100
100 -> 100
101 -> 200

关于sql-server - SQL Server 中的 *UP* 舍入到最接近的 100,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3204412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com