How can I set only the time portion of a SQL datetimeoffset variable?
For example:
DECLARE @date datetimeoffset = '2014-01-11 11:04:26 +02:00'
I want to calculate two further datetimeoffsets:
@startdate should be '2014-01-11 00:00:00 +02:00'
@enddate should be '2014-01-12 00:00:00 +02:00'
But all the solutions I tried set the offset to zero.
NOTE: I need the original offset in the results since I need to compare them to some datetimeoffset columns in a table. So just casting to a date will not work.
Further note: This would be quite easy in SQL2012; I could use DATETIMEOFFSETFROMPARTS. Unfortunately, I am not able to upgrade to 2012 at the moment. Example:
SET @startdate = SELECT DATETIMEOFFSETFROMPARTS(datepart(yyyy, @date), datepart(mm, @date), datepart(dd, @date), 0, 0, 0, 0, datepart(tz, @date), 0, 7);