T-SQL 中的四舍五入毫秒
在 SQL Server 2008
中,我在表中有以下 DateTime
类型的列。
+-------------------------+
| LTime |
+-------------------------+
| 2009-12-07 10:40:21.893 |
| 2009-12-07 10:42:18.173 |
+-------------------------+
从上面的列中,我想选择日期时间
并四舍五入毫秒
,以获得以下输出
+---------------------+
| LTime |
+---------------------+
| 2009-12-07 10:40:22 |
| 2009-12-07 10:42:18 |
+---------------------+
非常感谢您提前提供的帮助。
In SQL Server 2008
, I have the below column of type DateTime
in a table.
+-------------------------+
| LTime |
+-------------------------+
| 2009-12-07 10:40:21.893 |
| 2009-12-07 10:42:18.173 |
+-------------------------+
From the above column, I want to select the datetime
and round off the milliseconds
, in order to get the below output
+---------------------+
| LTime |
+---------------------+
| 2009-12-07 10:40:22 |
| 2009-12-07 10:42:18 |
+---------------------+
Greatly appreciate your help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
吗?
做你需要的
Does
Do what you need?