Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

58
votes
14answers
107k views

How to calculate the difference between two dates using PHP?

I have two dates of the form: Start Date: 2007-03-24 End Date: 2009-06-26 Now I need to find the difference between these two in the below form: 2 years, 3 months and 2 days How can I do this ...
13
votes
8answers
19k views

How to calculate age in T-SQL with years, months, and days

What would be the best way to calculate someone's age in years, months, and days in T-SQL (SQL Server 2000)? The datediff function doesn't handle year boundaries well, plus getting the months and ...
11
votes
8answers
8k views

Difference in days between two dates in Java?

I've to find number of days between two dates: one, is from report and one, is current date. My snippet : int age=calculateDifference(agingDate, today); Here, calculateDifference method is a ...
11
votes
10answers
3k views

What is the most straightforward way to pad empty dates in sql results (on either mysql or perl end)?

I'm building a quick csv from a mysql table with a query like: select DATE(date),count(date) from table group by DATE(date) order by date asc; and just dumping them to a file in perl over a: ...
6
votes
13answers
4k views

Count number of Mondays in a given date range

Given a date range, I need to know how many Mondays (or Tuesdays, Wednesdays, etc) are in that range. I am currently working in C#.
5
votes
4answers
9k views

Oracle equivalent to SQL Server/Sybase DateDiff

We are now using NHibernate to connect to different database base on where our software is installed. So I am porting many SQL Procedures to Oracle. SQL Server has a nice function called DateDiff ...
4
votes
4answers
84 views

Battling Datediff in SQL

I am writing a little query in SQL and am butting heads with an issue that it seems like someone must have run into before. I am trying to find the number of months between two dates. I am using an ...
4
votes
2answers
367 views

SQL Datediff - find datediff between rows

I would like to query a database using sql to show the difference in time between id 1,2,3 and so on. basically it will compare the row below it for all records. any help would be appreciated. ...
4
votes
3answers
233 views

MySQL Dates between Dates

I am wondering if there is a way, in MySQL 4.1+, to query the specific dates between date ranges in my records? For a quick example, I have two records with datetime ranges, like ID | Activity | ...
4
votes
1answer
2k views

deleting records having a date older than 3 days, for rollign 3 day job?

prior to executing a sensitive sql command i wanted to do a sanity check. i am trying to delete records that have a [LoadDt] date value older than 3 days and my code is: delete IntraDayStats where ...
4
votes
4answers
611 views

SQL DATEDIFF Not working?

I am running a simple DATEDIFF query but it doesn't seem to calculate the days properly or i'm doing something wrong. If I run PRINT DATEDIFF(Day, 2010-01-20, 2010-01-01) RETURN 19 Which is ...
4
votes
4answers
8k views

How to get a DateDiff-Value in milliseconds in VBA (Excel)?

I need to calculate the difference between two timestamps in milliseconds. Unfortunatley, the DateDiff-function of VBA does not offer this precision. Are there any workarounds? Thanks in advance!
4
votes
3answers
3k views

SQL(?): Counting the time between two datetime values

What is the best way to count the time between two datetime values fetched from MySQL when I need to count only the time between hours 08:00:00-16:00:00. For example if I have values 2008-10-13 ...
3
votes
3answers
218 views

TSQL- Finding the difference in days of multiple records in SQL Server

Is it possible to find the difference of days of different records in SQL Server 2008 R2? SELECT OrderDate FROM OrdersTbl WHERE SKU='AA0000' ORDER BY ORDERDATE DESC OrderDate ...
3
votes
4answers
398 views

Behavior of <?php echo date(“H:i:s”, 0);?>

I used : <?php echo date("H:i:s", $var_time_diff); ?> to construct a time between two dates.. and in my head it was $var_time_diff = 36000 = display 10:00:00 for 10 hours. But in fact ...
3
votes
4answers
375 views

SQL calculate number of days of residency by month, by user, by location

I'm working on a query for a rehab organization where tenants (client/patients) live in a building when they first arrive, as they progress in their treatment they move to another building and as they ...
3
votes
2answers
2k views

Undefined date_diff()

I'm trying to use date_diff(): $datetime1 = date_create('19.03.2010'); $datetime2 = date_create('22.04.2010'); $interval = date_diff($datetime1, $datetime2); echo $interval->format('%R%d days'); ...
3
votes
4answers
741 views

SQL Server DATEDIFF accuracy

I have to store some intervals in mssql db. I'm aware that the datetime's accuracy is approx. 3.3ms (can only end 0, 3 and 7). But when I calculate intervals between datetimes I see that the result ...
3
votes
5answers
4k views

SQL DateDiff advanced usage?

I need to calculate the DateDiff (hours) between two dates, but only during business-hours (8:30 - 16:00, no weekends). This result will then be put into the Reaction_Time column as per the example ...
3
votes
4answers
3k views

SQL: get DATEDIFF to not return negative values

I have a query in which I am pulling the runtime of an executable. The database contains its start time and its end time. I would like to get the total time for the run. So far I have: SELECT ...
2
votes
1answer
58 views

sum the count of days in many intervals

I have the following table: CREATE table DataDiff (CLI tinyint, id tinyint, date datetime, countable bit) insert into DataDiff values (234,1,convert(datetime,'17/12/1997',103),1) insert into DataDiff ...
2
votes
1answer
59 views

VB.Net - Datediff with SQL Field

I'm trying to do a Datediff in VB.Net thats confusing me. Basically I'm trying to do the following. If DateDiff("D", Today(), rsData("Start")) > 0 Then This is working fine when comparing the ...
2
votes
1answer
63 views

Pairing of login and logout datetime, and calculate workingtime

Pair login datetime with logout datetime from single table, and calculate workingtime. EmployeeLogInOut table: TransactionID bigint, TransactionDate datetime, Type smallint, Automatic bit, SalesDate ...
2
votes
1answer
307 views

jquery datepicker time change

Last days I was facing a strange behavior calculating date diff with jquery datepicker, when I try to find out the difference in days of two dates crossing the 28th march. The difference, instead of ...
2
votes
5answers
372 views

Android Java - Joda Date is slow in Eclipse/Emulator -

I am trying to find a set of date functions. Looks like the Joda http://joda-time.sourceforge.net Does everything I need, but when I call a simple DateTime dt = new DateTime(); it hangs the ...
2
votes
3answers
344 views

DateDiff Rounding in SQL Server

I have a table that contains the last date/time a particular function was ran. In my stored procedure, I want to return 1 if the current date/time is more than an hour away from the last time it was ...
2
votes
2answers
695 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 ...
2
votes
4answers
149 views

What is the recommended way of doing date arithmetics in Perl?

What is the recommended way of doing date arithmetics in Perl? Say for example that I want to know the date three days ago from today (where today = 2010-10-17 and today - 3 days = 2010-10-13). How ...
2
votes
2answers
2k views

SQL Server 2005: how to subtract 6 month

I have a date, suppose today date declare @d datetime set @d = '20101014' I need select @d - <six month> where is the real number of days that contains last six month, beginning from ...
2
votes
1answer
142 views

“Hour:Minute” difference from two “Hour:Minute” strings

Simple, eh? -sigh- A function. Two string arguments ( I guess it doesn't matter the type). Returning a string which is the time difference between the arguments. Think about it as a counter at your ...
2
votes
3answers
923 views

T-SQL DateDiff - partition by “full hours ago”, rather than “times minutes turned 00 since”

I have a table with timestamps, and I want to partition this table into hour-long intervals, starting at now and going backwards a couple of hours. I'm unable to get the results I need with the T-SQL ...
2
votes
3answers
165 views

MySQL query puzzle - finding what WOULD have been the most recent date

I've looked all over and haven't yet found an intelligent way to handle this, though I feel sure one is possible: One table of historical data has quarterly information: CREATE TABLE Quarterly ( ...
2
votes
3answers
869 views

Datediff between non-consecutive rows in a table

I would like to take the average of the time difference from Table1 below. The values are not consecutive and occasionally the time value is repeated, so I need to 1) sort by time, 2) discard ...
2
votes
3answers
3k views

Sharepoint Designer - is there a way to calculate a date difference in a workflow?

Maybe I'm just crazy... So, with SPD I can add any time unit to a date and put that into a variable, but I can't seem to find anything that will let me calculate the difference between two dates. "Do ...
2
votes
2answers
349 views

SQL DATEDIFF over non contiguous dates

I've got a table that looks like this: Code Mark Date Notional Beta 5/1/2008 $1,102,451.00 Beta 5/2/2008 $1,102,451.00 Beta 5/5/2008 $1,102,451.00 Beta 5/6/2008 $1,102,451.00 I need ...
2
votes
6answers
104 views

Getting the Whole Time

How can I get the whole time like this datediff(time, logindate, logoutdate) I know this built-in function doesn't accept time argument but how can I get the whole time rather than minute, ...
2
votes
7answers
660 views

SQL question: Getting records based on datediff from record to record

Ok, got a tricky one here... If my data looks like this: Table1 ID Date_Created 1 1/1/2009 2 1/3/2009 3 1/5/2009 4 1/10/2009 5 1/15/2009 6 1/16/2009 How do I get the records that are ...
2
votes
1answer
2k views

Is it possible to set start of week for T-SQL DATEDIFF function?

I use DATEDIFF function to filter records added this week only: DATEDIFF(week, DateCreated, GETDATE()) = 0 and I noticed what it's assumed what week starts on Sunday. But in my case I would prefer ...
2
votes
5answers
6k views

Using DATEDIFF in T-SQL

I am using DATEDIFF in an SQL statement. I am selecting it, and I need to use it in WHERE clause as well. This statement does not work... SELECT DATEDIFF(ss, BegTime, EndTime) AS InitialSave FROM ...
2
votes
3answers
11k views

Oracle - Best SELECT statement for getting the difference in minutes between two DateTime columns?

I'm attempting to fulfill a rather difficult reporting request from a client, and I need to find away to get the difference between two DateTime columns in minutes. I've attempted to use trunc and ...
1
vote
2answers
54 views

SQL DATEDIFF in a SELECT Statement ')' Error

I have currently been placed in charge of an SSRS instance and am running into a little bit of trouble with one of my select statements. Essentially, what I would like to do is take the time that a ...
1
vote
2answers
52 views

extract a subset of a data frame where records are separated by a specific time period

(I have modified this question to make it more explicit.) I have a dataset as follows: data <- structure(list(id = 1:12, personID = c(1L, 2L, 3L, 4L, 4L, 3L, 2L, 1L, 1L, 2L, 3L, 4L), lastName = ...
1
vote
1answer
93 views

C# SQL Grouping Intervals using DateDiff?

I have the following table: RowA RowB date_time RowD ------- ------- ------------------- ------- ValueA1 ValueB1 01.01.2001 16:23:01 ValueD1 ValueA2 ValueB2 ...
1
vote
3answers
76 views

ASP - Minute into Hours

I am calculating hours from mins. <% hrs =(DateDiff("N", cdate(m1), CDate(m2) ))/60 %> . it's not giving expected output. I need this hrs to generate salary so time hrs should like this ...
1
vote
2answers
41 views

DateTime->diff() crashes

I have a few lines of PHP that should work, but don't: $date1=new DateTime(); $date2=new DateTime(); $interval=date_diff($date1,$date2); or $interval=$date1->diff($date2); I even copied the ...
1
vote
1answer
145 views

DateDiff split into months access/vba

How would I create a query/vba function similar to DateDiff that splits the result into days per month (i.e. 1/1/2010 - 2/3/2010 = January: 31, February: 3 (disregarding formatting)).
1
vote
1answer
147 views

Stuck with SQL statement again. Error: “Invalid column name”

I'm trying to make the following SQL server statement to work, but I get this error: "Invalid column name 'bfg'." WITH valDiff AS ( SELECT CASE WHEN DATEADD(second, 604800, [InTime]) <= ...
1
vote
1answer
103 views

PHP: Unexpected total amount of days from date diff [closed]

Possible Duplicate: PHP DateTime::days returns trash? Ok, I don't get this... Could someone explain what I'm doing wrong here? date_default_timezone_set('Europe/Oslo'); $a = new ...
1
vote
1answer
383 views

Doctrine: calculating datetime difference

How can i calculate the difference between datetime column and now (for example 'created_at' and NOW()) in Doctrine? I Googled it alot and couldn't find an answer.. Thanks in advance!
1
vote
1answer
115 views

PHP date_add is alias of DateTime::add, but who calls who internally?

Like date_add there are many functions date_diff, date_format etc having a corresponding alias in DateTime class. Do you know if internally DateTime::add calls date_add or vice versa? And just to ...

1 2 3