I have a number of rows in the table, which datetime column values contain both date and time. I need to remove time part from them. By another words, if value is 2006-08-10 01:00:00.000, it should be replaced with 2006-08-10 00:00:00.000.
Is it possible?
Thanks in advance.
I have a number of rows in the table, which datetime column values contain
Share
By casting to the new
Datetype in SQL server 2008 the time part will be removed.