SQL how to retrieve the middle point between two given dates?
With your own dates...
SELECT DATEADD(ms,
DATEDIFF(ms,'2012-10-04 12:48:56:000', '2012-10-04 12:48:58:000')/2,
'2012-10-04 12:48:56:000')
With your own dates...
SELECT DATEADD(ms,
DATEDIFF(ms,'2012-10-04 12:48:56:000', '2012-10-04 12:48:58:000')/2,
'2012-10-04 12:48:56:000')