I am making a DATEDIFF() call in SQL server 2008 as part of a stored procedure, which potentially is returning values of as small as 3 seconds or less. I would like the format to be in MM:SS (i.e. 00:03 when 3 seconds). I was originally using the call in minutes:
DATEDIFF(mi, SELECT MAX(startDate) FROM myTable , SELECT MAX(EndDate) FROM myTable)
However, this was rounding down to the nearest minute, and thus erasing the seconds values. How can I achieve a format as specified above using DATEDIFF?
