• add those minutes to a date @ 00:00:00 hrs then format as a time. As an example:

    declare @mins int

    set @mins = 150

    select convert(char(5),dateadd(minute,@mins,'01/01/2013'),108)

    The probability of survival is inversely proportional to the angle of arrival.