There is a time stamp column/field in a table, and the format is like

2009-12-05 10:35:28,

Now I want to get the time in terms of minutes(How many minutes have elapsed) elapsed from then on, how to do it?

link|improve this question

72% accept rate
@Steven: you have asked the same question using PHP .... – RageZ Dec 8 '09 at 6:03
But the answers I got are based on PHP, not MySQL. I want to implement this feature using MySQL instead. – Steven Dec 8 '09 at 6:04
feedback

1 Answer

TIMEDIFF() can be used to get a difference between date/time values, which is expressed in a "HH:MM:SS.SSSSSS" format.

TIME_TO_SEC() can convert this into a number of seconds.

SELECT TIME_TO_SEC(TIMEDIFF(NOW(), my_date_and_timestamp)) / 60;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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