About 423,000 results
Open links in new tab
  1. Calculate difference between 2 date / times in Oracle SQL

    Oldest cdr date - Date format dd/mm/yyyy hh24:mi:ss How can I calcuate the difference in hours minutes and seconds (and possibly days) between the two dates in Oracle SQL?

  2. How to calculate number of days between two given dates

    For example, in the following example, the time difference between the two datetimes is 5 hours and if we use timedelta.days to get the number of days, that difference becomes 0 days or -1 day …

  3. Calculating days between two dates with Java - Stack Overflow

    I want a Java program that calculates days between two dates. Type the first date (German notation; with whitespaces: "dd mm yyyy") Type the second date. The program should calculates the number of...

  4. How to calculate date difference in JavaScript? - Stack Overflow

    Oct 14, 2011 · I want to calculate date difference in days, hours, minutes, seconds, milliseconds, nanoseconds. How can I do it?

  5. How to calculate number of days between two dates?

    Feb 13, 2009 · 99% of the cases where the user asks for "number of days between two dates" what she doesn't understand is that she is trying to compare apples with pears. The problem becomes so …

  6. How to calculate difference between two dates (number of days)?

    Aug 1, 2019 · If you want the duration to reflect the distance between two days, then use (EndDate.Date - StartDate.Date).Days If you want the duration to reflect the duration between the morning of the …

  7. How to calculate the number of days between two dates?

    I am calculating the number of days between the 'from' and 'to' date. For example, if the from date is 13/04/2010 and the to date is 15/04/2010 the result should be How do I get the result using JavaScript?

  8. SQL query to select dates between two dates - Stack Overflow

    Feb 26, 2011 · I have a start_date and end_date. I want to get the list of dates in between these two dates. Can anyone help me pointing the mistake in my query. select Date,TotalAllowance from …

  9. Number of days between two dates C++ - Stack Overflow

    Jan 24, 2012 · I saw examples for C#, Java, but for C++ i cant find solution to calculate how many days between two dates. For example between 2012-01-24 and 2013-01-08 Thanks!

  10. Quickly calculate date differences - Unix & Linux Stack Exchange

    I often want to make some quick date calculations, such as: What is the difference between these two dates? What is the date n weeks after this other date? I usually open a calendar and count the d...