Or this?-- prepare sample datadeclare @t table(sent_date datetime, approved_date datetime)insert @tselect '2/28/06 11:06', '2/28/06 11:39' union allselect '2/2/06 17:42', '2/2/06 18:03' union allselect '2/8/06 16:55', '2/8/06 17:38' union allselect '1/27/06 17:00', '1/27/06 17:54' union allselect '1/26/06 12:08', '1/26/06 12:09' union allselect '2/28/06 15:46', '2/28/06 16:26' union allselect '1/23/06 10:01', '1/23/06 10:43' union allselect '1/26/06 13:46', '1/26/06 13:59' union allselect '1/13/06 13:51', '1/13/06 14:47'-- show the outputselect sent_date, approved_date, convert(varchar(5), dateadd(minute, datediff(minute, sent_date, approved_date), 0), 108)from @t
Peter LarssonHelsingborg, Sweden