Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rounding milliseconds in T-SQL

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.

like image 715
user219628 Avatar asked May 02 '11 21:05

user219628


1 Answers

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?

like image 143
Martin Smith Avatar answered Sep 22 '22 20:09

Martin Smith