如何在 SQL Server 2005 中进行不带尾随零的舍入?
如何在 SQL Server 2005 中进行不带尾随零的舍入?
select round(100.5555, 2)
...产量 100.5500。如何去掉零呢?
How to round with no trailing zeros in SQL Server 2005?
select round(100.5555, 2)
...yields 100.5500. How to get rid of the zeros?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个
Try this
您可以将其重新转换为原始数据类型,例如,
但是,这听起来像显示逻辑,因此,我怀疑您最好在 UI 而不是数据库中执行此操作。
You could re-cast it as your original datatype, e.g.
However, this sounds like display logic and therefore, I suspect you are better off doing this within your UI rather than your DB.
声明@d十进制(8,2)可以帮助你。
declare @d decimal(8,2) can help you.