If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Help with date functions

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-11-04, 05:58
ysherazi ysherazi is offline
Registered User
 
Join Date: Jun 2004
Posts: 4
Help with date functions

Hi every one

I need help with the date function

I want to subtract two dates with type DATETIME to know how much time user spent.

will really appriciate it

regards
Yasir
Reply With Quote
  #2 (permalink)  
Old 06-11-04, 07:03
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
select TO_DAYS(date1) - TO_DAYS(date2)
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #3 (permalink)  
Old 06-11-04, 08:36
ysherazi ysherazi is offline
Registered User
 
Join Date: Jun 2004
Posts: 4
but that will give me no. of days not time I'm using datetime as type

regards
Reply With Quote
  #4 (permalink)  
Old 06-11-04, 09:09
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
[Edit]: oops

select UNIX_TIMESTAMP(datetime1) - UNIX_TIMESTAMP(datetime2)

this will give you the difference in seconds

if the difference is less than 24 hours, you can then use SEC_TO_TIME to convert the result back to hh:mm:ss format

if it's more than 24 hours, you have to do additional arithmetic
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book

Last edited by r937; 06-11-04 at 09:21.
Reply With Quote
  #5 (permalink)  
Old 06-12-04, 06:24
ysherazi ysherazi is offline
Registered User
 
Join Date: Jun 2004
Posts: 4
Smile

Thanks man really appriciate it.
caio
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On