Date-difference will give difference in the number of days, months, years etc. between any two calendar dates. (synonyms in stackoverflow.com: datediff, date-diff, date-difference)

learn more… | top users | synonyms

7
votes
3answers
19k views

How to compare two dates to find time difference in SQL Server 2005, date manipulation

I have two columns: job_start job_end 2011-11-02 12:20:37.247 2011-11-02 13:35:14.613 How would it be possible using T-SQL to find the raw amount of time that has ...
5
votes
2answers
6k views

How do I check the difference, in seconds, between two dates?

There has to be an easier way to do this. I have objects that want to be refreshed every so often, so I want to record when they were created, check against the current timestamp, and refresh as ...
4
votes
6answers
3k views

Calculate Date/Time Difference in Java considering AM/PM

I want to calculate the difference between two date/time in java using Date and Calendar classes. The format that I have is "2012-01-24 12:30:00 PM". I have implemented my own method and also google ...
4
votes
3answers
2k views

Difference between two dates, including only business days (i.e. excluding weekends and holidays)

How can I get the number of business days between two java.util.Date, i.e. excluding weekends and holidays? By holidays, I mean legally recognized holidays. It must be depending on the country, ...
3
votes
2answers
275 views

get difference in time in HH:MM format php

how can i get this to output HH:MM format? $to_time = strtotime("2008-12-13 10:42:00"); <--AM $from_time = strtotime("2008-12-14 8:21:00"); <-- PM $stat = round(abs($to_time - ...
3
votes
1answer
84 views

find longest and fastest difference between dates in responce/updates

I have an issue finding the longest responce time and the shortest responce time. Three tables: T1.RESPONCE resp_id (bigint) resp_text (text) resp_created_date (datetime) resp_closed_date (datetime) ...
2
votes
3answers
635 views

why does ColdFusion's DateDiff return strange/negative values?

Pulling my hair out again... I need to calculate the difference between two dates in days. I'm doing this: <cfset d = DateDiff("d", Dateformat( active_apps.app_base_coupon_start, "dd.mm.yyyy"), ...
2
votes
2answers
95 views

Calculate passed time with PHP

I got the time difference between dates like this : $time1 = "2013-02-25 12:00:00"; $time2 = "2013-01-01 12:00:00"; $tdiff = strtotime($time1) - strtotime($time2); I want extract days, hours and ...
2
votes
2answers
38 views

Javascript: Milliseconds to a date

How would I go about to get the amount of milliseconds and a specific data. For Instance, i know how to create a date: var d = new Date(2014,02,22,12,0,0,0); and to get today's date: (new ...
2
votes
2answers
70 views

ANSI 92 Date Difference not working in MySQL

I'm, trying to calculate the number of days between two dates using ANSI SQL standard. But I'm missing something as this statement returns NULL in MySQL. SELECT EXTRACT(DAY FROM DATE('2009-01-25') ...
2
votes
1answer
306 views

LWUIT Calendar. set time on selected date and find difference in milliseconds

I have loaded the calendar in my LWUIT based UI. Thanks to this thread. It is neat. when i select a certain date i want the calendar to close and the selected date to appear in my original form in ...
2
votes
1answer
658 views

Date difference with leap year

I have 5 different schedules for 5 weeks: first week = Monday to Friday (8am to 5pm) && Rest days on Saturday and Sunday second week = Monday to Friday (10am to 6pm) && Rest days on ...
2
votes
0answers
329 views

Android: Convert 2 different timezones to UTC and calculate their difference in days, hours, and minutes

I have yet to find a straightforward approach to this. I've seen tons of different examples, some actually clash with each other, others are using deprecated calls, I'm not sure why this is so ...
1
vote
1answer
65 views

PostgreSQL - how to fetch rows higher then year since the date

I have in the DATE column saved a dates. I try to get those rows, that are higher since that date about a year, two years etc. The year, two years is a parameter from my app. Is possible to get these ...
1
vote
2answers
70 views

Why Time difference gives me 2 different results

this code should give 0:40 minutes, however in one way gives me 0:20 minutes, and in the other way gives me 1:40 minutes. var t1 = '12:05'.split(':'), t2 = '12:45'.split(':'); var d1 = new ...
1
vote
3answers
185 views

calculate how many leap days between two dates

I have written this code down, my object of the program is to calculate the minutes between two given dates and time. lets say the difference in minute between: 14/1/2016 23:18 and 14/1/2004 23:18 ...
1
vote
5answers
360 views

How to find days difference between the current day and input date

$a = "Sat Aug 04 23:59:59 GMT 2012" How to find that is that $a is 100 days older ? I cant use any extra perl modules because i cant install all hosts
1
vote
2answers
53 views

Ruby : How to correctly calculate date difference?

I began with (date2 - date1).round, now this should have work. Problem : 06 Jan,2013 to 05 Feb,2013 => 30 06 Feb,2013 to 05 Mar,2013 => 27 06 Mar,2013 to 05 Apr,2013 => 30 06 Apr,2013 to 27 ...
1
vote
2answers
175 views

Strange behaviour of PHP DateTime Class

I'm trying to get the time difference in milliseconds. $_SESSION['startTime'] = time(); $to_time = time(); //I call the code from here after a delay, say 4 seconds $from_time = ...
1
vote
5answers
847 views

How to Calculate Two Different Dates like 2 years, 5 months

I want to calculate the difference between two dates and want to convert it like 2 years, 5 months or only 3 months, or 2 days according to the difference considering all months are 30 days... For ...
1
vote
2answers
142 views

Find if date is more than another date

I can't work out why this VB.net code is not working.. What I am trying to do is if value1 > value2 then show a messagebox saying expired else show a messagebox saying not expired. If "4-3-13 ...
1
vote
4answers
2k views

Java Calendar: Getting Difference Between Two Dates/Times - Off by One

I have seen many questions and answers on this topic, but none addressed my particular problem. I extended the java Calendar class (standard--no third party libraries), and needed to find the ...
1
vote
2answers
2k views

Difference between two date& time in datetime Fields in SQL [duplicate]

Possible Duplicate: How to compare two dates to find time difference in SQL Server 2005, date manipulation I had two datetime fields and should calculate the between them including time ...
1
vote
5answers
212 views

PHP Calculation 'downtime'

I've made an program in PHP that stores in a MySQL database when it's working. The table that shows whether the program is working or not looks like this: Table_name: downtime Working(int) ...
1
vote
2answers
322 views

DateDiff Function

I am trying some examples for DateDiff Function SELECT DATEDIFF(day,'2008-06-05','2008-08-05') AS DiffDate This statement gives me an error From keyword not found where expected. Why do I get this ...
1
vote
0answers
127 views

Millis between two dates in Java, ignoring Holidays and Weekends

What I need is to subtract two Dates and get back a duration of milliseconds ignoring and holidays or business days. I checked out http://objectlabkit.sourceforge.net/ but I it doesn't seem to ...
1
vote
1answer
1k views

XSL Date & Time Difference Calculation (XSLT 1.0) - Revised question

Using XSLT 1.0 & receive dates in the following format: 20111129060804 and I have a need to be able to calculate differences between two of them. However, I cannot use any extensions. I also ...
0
votes
2answers
2k views

How to get the difference in minutes between two dates in Microsoft Excel?

I am doing some work in Excel and am running into a bit of a problem. The instruments I am working with save the date and the time of the measurements and I can read this data into Excel with the ...
0
votes
2answers
1k views

Difference in using DateTime.Now vs DateTime.UtcNow

As this Question's Answer from hightechrider mentions that code block as below is more right var start = DateTime.Parse("08/10/2011 23:50:31").Utc; if(start.AddMinutes(20) > DateTime.UtcNow) ...
0
votes
4answers
42 views

How I calculate the difference of two date time

In my database i stored the date time in the following format. I want to get the difference between two samples in seconds. Is it any simple methods are available? u'2013-05-20 05:09:06' ...
0
votes
1answer
77 views

Datediff performance

I have a number of days variable which I want to compare against a datetime column (senddate) . Im currently doing this : DECLARE @RunDate datetime = '2013-01-01' DECALRE @CalculationInterval int = ...
0
votes
3answers
86 views

subtract two dates and show result in date formate

i m tried hard to get the date in the date formate after subtracting two dates but not getting the correct result ,and the result is 1970-01-07 05:00:00 but i require the result 2013-02-07 12:02:00 ...
0
votes
3answers
739 views

Calculating date difference with timespan and future dates

I am trying to flag rows in a grid in the following order based on a date column When 2 or more days old from today then RED When 1 day old then YELLOW When 0 days old then GREEN When the date is in ...
0
votes
2answers
145 views

Date difference calculation mistake in Javascript

I use the following script to calculate date difference between two dates(with time). It works fine for most of the inputs but the problem is it returns wrong output for some inputs. What is wrong ...
0
votes
3answers
21 views

How to get date difference with specific date format?

In my javascript code, I am able to only get the date as a string in this format: Example: Mon May 28 11:20:46 EDT 2012. Is there a way I can check if that date and the current date is >= than 1 ...
0
votes
1answer
118 views

Twig date difference

I've got an entity with a starting date and an ending date. Is it possible to get the difference in time between them by using twig?
0
votes
2answers
749 views

Number of days between past date and current date in Google spreadsheet

I want to calculate the number of days passed between past date and a current date. My past date is in the format dd/mm/yyyy format. I have used below mentioned formulas but giving the propoer output. ...
0
votes
3answers
91 views

java threading issue, right approach?

I am creating a java service which will continuously run in the background and the job of the service is to create a copy of the table at a particular date. To be exact, i read data from some table ...
0
votes
2answers
1k views

i want to date difference in week,month year in php?

I am new here and php i want to know how to calculate date difference in php. My date is mktime() formate. Please confirm this is current issue for me.
0
votes
4answers
49 views

How do i find the difference in 2 dates (in days) when using m-d-Y format?

I need something like this $today = date("m-d-Y"); $otherdate = "05-03-2013"; //Some math here //echo the difference between the two dates in days I've tried using strtotime but it doesn't work ...
0
votes
3answers
36 views

Trouble calculating time difference in PHP when doing action

$timeFromMysql = strtotime($createdtime); $currenTime = SPRequest::now();; if ($diff = abs( strtotime( $timeFromMysql ) - strtotime( $currenTime ) > 30*24*60*60) { ACTION } I just wondering ...
0
votes
1answer
50 views

How can I calculate difference of year and month in Python? [duplicate]

I have a script that get the date from datetime, and the date from whois service: import time from datetime import datetime import whois #date url='testurl.com' now = datetime.now() date1 = ...
0
votes
1answer
133 views

PHP - Date / Time difference using only working hours [duplicate]

I am trying to create a function that will work out the time difference between 2 times but only includes WORKING HOURS. This is for a project which tracks the time it takes for a job to be completed. ...
0
votes
1answer
71 views

Difference between dates in different rows

Hy my problem is, that I need the average time between a chargebegin & chargeend row (timestampserver) grouped by stationname and connectornumber and day. The main problem is, that i can not ...
0
votes
2answers
117 views

How do I solve this issue faced in datepicker dialog in android? [duplicate]

Possible Duplicate: Calculating the Difference Between Two Java Date Instances Please do help me. I'm finding the difference between two dates and everything is fine if the start date and end ...
0
votes
2answers
166 views

I want to get difference between two timestamps which are filled in a php form

I have a HTML form which takes the data from the user as open_date and close_date. When the form is submitted, the data will be loaded into a MYSQL database. What i want is: I have a column in my ...
0
votes
1answer
239 views

PHP Decrease count between dates

I'm currently struggling with what should be a basic task. I have a start date, an end date and a count. I need to calculate how many times an hour the third parameter (the count) should decrease ...
0
votes
2answers
27 views

Difference between 2 hours Jquery

Hy everyone ! I found this script for a project of my http://jsfiddle.net/diode/nuv7t/5/ it's make Difference betweeen 2 hours but i need to define these 2 vars var start_actual_time = "01/17/2012 ...
0
votes
0answers
36 views

How to calculate number of months between two dates in JavaScript? [closed]

I found everywhere question like: How do I get the number of days between two dates, but nowhere get number of months between two dates in JavaScript - jQuery. After much thought, I try one solution, ...
0
votes
1answer
40 views

PHP DateTime::diff always returns 0? [closed]

I have two timestamps, one retrieved from a mysql DB and the other created for the current time: $timestart = $row[ time_started ];//2013-04-24 15:51:59 $timenow = date("Y-m-d H:i:s");//2013-04-24 ...

1 2