Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am currently working an SQL script to calculate the difference between two dates which would give me the result in DD:HH:MI:SEC format. Example: Date 1: 7/30/12 4:00 PM Date 2: 5/4/12 10:31 AM

And the result should be 87:05:29:00

Can you kindly help with the script for this? Regards, Arjun

share|improve this question
1  
What are you using? sql-server, oracel, mysql – Arion May 29 '12 at 13:32
Which RDBMS and What have you tried? – Rahul May 29 '12 at 13:34

2 Answers

If you are using sql-server then you can do this:

declare @x int, 
        @dt1 smalldatetime = '1996-03-25 03:24:16', 
        @dt2 smalldatetime = getdate()

set @x = datediff (s, @dt1, @dt2)


SELECT convert(varchar, @x / (60 * 60 * 24)) + ':'
+ convert(varchar, dateadd(s, @x, convert(datetime2, '0001-01-01')), 108)

Reference here

share|improve this answer

May not be an efficient one but can be done like this (If you are using SQL Server) :

select cast(DATEDIFF(DAY,'5/4/12 10:31 AM','7/30/12 4:00 PM') as varchar) +
':' + 
cast(DATEDIFF(HOUR,'5/4/12 10:31 AM','7/30/12 4:00 PM') as varchar) + ':' +
cast(DATEDIFF(MINUTE,'5/4/12 10:31 AM','7/30/12 4:00 PM') as varchar) + ':' +
cast(DATEDIFF(SECOND,'5/4/12 10:31 AM','7/30/12 4:00 PM') as varchar)
share|improve this answer
1  
This doesn't display what the OP wants. It displays the difference between the dates for each datepart without subtracting the previous datepart. For example, the hours should only be the hours remaining after subtracting the total days from the diff. – Head of Catering Mar 20 at 22:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.