I have a date 2013-12-14 05:00:00.000 in my table.
Now i want to update only time of that date. E.G to 2013-12-14 04:00:00.000
Is there any query to update o
User the below one to update the Time only for datetime column -
datetime
select CONVERT(varchar(10),datecolumn, 120) + ' 12:34:56', CONVERT(varchar(10),datecolumn, 120) + ' 00:00:00', RSLV_LTR_INITIAL_DUE_DT, * from twhere able1