SQL 舍入问题
我在一列中返回以下值.. 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的 DBMS 可能具有 CEILING 功能。 尝试一下。
Your DBMS probably has a CEILING function. Try that.
上限函数会很好地工作,因为您想四舍五入到最接近的整数。 有关 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
从表名中选择 CEILING( 列名 )
select CEILING( columnname ) from tablename