I spent about an hour attempting to google the best way of changing the time of a SQL datetime midquery. I would think this would be easy, and it kind of was, but finding the logic that led me to it was confoundingly difficult. So hopefully you other googlers out there will benefit from my experience. This is for SQL Server, but other versions of SQL will have similar functions available to them.
--We start with DateAdd which adds the specified time interval to a date DateAdd(timeinterval, amountoftime, date) --We combine this with DateDiff which gives you the difference in time between two dates. We can ask DateDiff to give us the number of days between the start of time (0) and our current time. Now we have days with no time, essentially zero'ing the time. DateDiff(timeinterval, starttime, endtime) DateDiff(dd, 0, mydatetime) --Finally we combine the two statements. DateDiff gives us our days and DateAdd converts that back into a datetime. DateAdd(anytimeinterval, 0, DateDiff(dd, 0, mydatetime)) --But what about actually setting the time? No problem, just change "anytimeinterval" and the 0 right after it to the time you want to add DateAdd(hh, 9, DateDiff(dd, 0, mydatetime)) would add nine hours to the truncated time.



Hi Thomas
Thanks for your post, i took the liberty to send you my solution. Hope it can be off help in some way.
I use the SQL CONVERT function to VARCHAR and then work it back again.
Here I pass in a DATETIMEand the new time to set it to and the SQL scalar function returns the new DATETIME with the new time set.
FUNCTION udf_SetTime
(
@InputDate DATETIME,
@NewTime TIME
)
RETURNS DATETIME
AS
BEGIN
DECLARE @NewDate DATETIME,
@StrDate VARCHAR(30),
@StrTime VARCHAR(30)
SET @StrDate = CONVERT(VARCHAR, @InputDate, 101);
SET @StrTime = CONVERT(VARCHAR, @NewTime, 108);
SET @StrDate = (@StrDate + ‘ ‘ + @StrTime);
RETURN CONVERT(DATETIME,@StrDate,121);
END
Thanks Tony.
I was using the same approach, and getting an conversion error all the time.
Guess what: I was just missing the space between the date and time part.