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 > Data Access, Manipulation & Batch Languages > Crystal Reports > diff between two dates

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-04-11, 22:08
pavansap pavansap is offline
Registered User
 
Join Date: Oct 2011
Posts: 8
diff between two dates

hi i want diff between two dates in (days,hours,and mins format)
but the date field in my data base is 2011-9-11 23:15:00


Can some please help me to find out the problem....
Reply With Quote
  #2 (permalink)  
Old 10-05-11, 11:52
mission mission is offline
Registered User
 
Join Date: Oct 2010
Posts: 44
Quote:
Originally Posted by pavansap View Post
hi i want diff between two dates in (days,hours,and mins format)
but the date field in my data base is 2011-9-11 23:15:00


Can some please help me to find out the problem....
You didn't say what the problem is.

There is nothing wrong with the format 2011-9-11 23:15:00.

To find out the difference between 2 dates, use the DateDiff function.

DateDiff

DateDiff returns a number of time intervals between two specified dates

Syntax:

DateDiff (intervalType, startDateTime, endDateTime)
DateDiff (intervalType, startDateTime, endDateTime, firstDayOfWeek)

• intervalType is a String expression that is the interval of time you use to calculate the difference between startDateTime and endDateTime.
• startDateTime is the first DateTime value used in calculating the difference.
• endDateTime is the second DateTime value used in calculating the difference.
• firstDayOfWeek is an optional constant specifying the first day of the week.

Returns
A Number value
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