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.

If i have a start time and a finish time, and i am finding the total time, if this goes above 24 hours, i wish for it instead of showing 26, to show 1 day and 2 hours. How can this be done?

share|improve this question
What have you tried? – John Conde Dec 2 '12 at 19:43
Are you trying to do this SQL side? – Shamil Dec 2 '12 at 19:45

2 Answers

You probably want to do an

IF    (MOD(HOUR(TIME) / 24) )  > 24, 
    SELECT CONCAT(
    FLOOR(HOUR(TIME) / 24), ' days ',
    MOD(HOUR(TIME), 24), ' hours ',
    MINUTE(TIME), ' minutes')
)

With Timediff,

FLOOR(HOUR(TIMEDIFF('2010-01-06 08:46', '2010-01-01 12:30')) / 24), ' days ',
share|improve this answer
worked like a charm, thanks. – user1854392 Dec 2 '12 at 19:56
No problem, remember to accept the answer if it's correct :) – Shamil Dec 2 '12 at 20:18

If your start_time and end_time are datetime type then use TIMEDIFF function and apply the desired DATE_FORMAT.

e.g.

select DATE_FORMAT(TIMEDIFF('2012:01:01 00:00:00', '2012:01:01 00:00:00.000001'),
                  '%d: %H: %m');
share|improve this answer

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.