Quantcast
Channel: SQLBlog Nederland » DateDiff
Viewing all articles
Browse latest Browse all 3

Calculate time in hours and minutes between two dates

$
0
0

 Sounds easy right? I want to calculate the difference in hours and minutes between two dates. A good readable notition for my report. I want a format like this:

00:36:53 OR 02:13:45

This can easy be done using a T-SQL Statement like this:

CONVERT(nvarchar(64), EindDatum-StartDatum, 108) AS Duration

So how does this look like in SQL Server?

T-SQL_Calculate_Difference_In_Minutes_Between_Two_Dates

Het bericht Calculate time in hours and minutes between two dates verscheen eerst op SQLBlog Nederland.


Viewing all articles
Browse latest Browse all 3

Trending Articles