Jump to content

[SOLVED] datetime difference


acidglitter

Recommended Posts

i have a column thats a datetime type. what mysql query would show how many days, hours, minutes from the saved date until now?

 

like

 

date in table:

2008-02-25 12:00:00

 

query result (something like this..):

0000-00-01 01:00:00

 

 

 

 

 

or.. what query would get this result?:

25 hours (until date saved in table)

Link to comment
https://forums.phpfreaks.com/topic/92737-solved-datetime-difference/
Share on other sites

so i have this right now, and its *almost* perfect..

 

HOUR(TIMEDIFF(date_column,NOW()))

 

the problem is, i'm also trying to use that here like..

 

WHERE HOUR(TIMEDIFF(date_column,NOW())) > 0

 

and you would think that old rows with a date before today would have negative numbers, but they don't.. so when i put that for where to select it shows ALL of the rows... what am i doing wrong?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.