Rounding milliseconds in T-SQL

自作多情 提交于 2019-12-18 08:11:07

问题


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.


回答1:


Does

SELECT CAST('2009-12-07 10:40:21.893' AS DATETIME2(0)), 
       CAST('2009-12-07 10:42:18.173' AS DATETIME2(0))

Do what you need?



来源:https://stackoverflow.com/questions/5862822/rounding-milliseconds-in-t-sql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!