SQL 舍入问题

发布于 2024-07-10 13:32:10 字数 102 浏览 9 评论 0原文

我在一列中返回以下值.. 0.250000 和 13.000000。 我想将 0.250000 舍入为 1,并保留 13 不变。 既然它们都属于同一列,有什么简单的方法可以做到这一点吗?

I have the following values being returned in a column.. 0.250000 and 13.000000. I'd like to round the 0.250000 up to 1 and leave the 13 as is. Any easy way to do this since they both fall within the same column?

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

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

发布评论

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

评论(3

自我难过 2024-07-17 13:32:10

您的 DBMS 可能具有 CEILING 功能。 尝试一下。

Your DBMS probably has a CEILING function. Try that.

温柔嚣张 2024-07-17 13:32:10

上限函数会很好地工作,因为您想四舍五入到最接近的整数。 有关 SQL Server 舍入的更多方法...

SQL Server 舍入方法

The ceiling function will work well because you want to round to the nearest whole number. For more methods on rounding with SQL Server....

SQL Server Rounding Methods

深空失忆 2024-07-17 13:32:10

从表名中选择 CEILING( 列名 )

select CEILING( columnname ) from tablename

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