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

0
votes
2answers
36 views

SSRS - DateValue

in SSRS, i am trying to retrun a DateValue that is the first day of the next month after the selected month/year. Everything works with my formula except when i try to evaluate on the month of ...
0
votes
2answers
28 views

SQL: Returning Columns of multiple tables and DATEDIFF in minutes

Attempting to retrieve columns from 3 different tables, with the TurnTime's being DATEDIFF's from a 4th table CustomerName, OrderTypeName, LoanNumber, TurnTime1, TurnTime2,TurnTime3, TurnTime4 ...
0
votes
1answer
33 views

DATEDIFF in Business Working Hours & Days Only

I am trying to write a report and am a little stuck :/ I am trying to show the hours and minutes between two dates however minus the non business working hours. Example a business works weekdays ...
0
votes
1answer
36 views

using sql to select records based on date differences

I manage a system that records changes in it's stock item's price and quantity. The table would look like this: STOCK(ID, DATE, QUANTITY, PRICE) (1, 2013.01.07 00:00, 9, 6) (1, 2013.01.02 00:00, 9, ...
2
votes
4answers
47 views

Subtract the date and list the days in MySQL

There are two rows in the table created and modified. I need to subtract a modified - created and list the days(given in result table). Table name : user ...
-3
votes
2answers
69 views

Configurable DateDiff from VB6 to C# [closed]

I have to convert below VB6 logic into C#. The VB6 code is as below. Public Function ProcessFile(sFile As String) As Boolean 'Some logic here If (DateDiff(strType, dtScanDT, Now) > ...
2
votes
1answer
63 views

javascript function to calculate difference in two dates, return short format, rounding to single unit

I struggled with wording the title, but basically I want a function where I can provide two dates and it would output something like: "2w" if the result was 15 days or "1y" if it was 13 months or "1m" ...
0
votes
4answers
51 views

SQL: How To Use DateDiff + ORDER BY with INNER JOIN

Here is my existing SQL statement: SELECT TOP 10 Users.FirstName + ' ' + Users.LastName AS Name, Feeds.LogType, Feeds.LogDesc, Feeds.Timestamp = ...
0
votes
2answers
69 views

MySQL; LEFT OUTER joining on DATEDIFF with indexes taking 300+ seconds (but only the first time)

MySQL's built in cache really makes this question moot for most of the day, but the very first time the following query is run, the performance is terrible: Taking over 300 seconds the first time ...
2
votes
2answers
107 views

SQL Query SUM DATEDIFF MAX

I have a problem with a SQL-Query. I want to count the runtime of a used application. But in the database the date value is inserted more then one time. I only need the highest value of the pk_date ...
0
votes
1answer
119 views

How to sum using datediff in SSRS

My goal is to get the following result in my *.rdl report from my SSRS expressions in visual studio 2008. The DueDate and InvoiceAmt are bound fields (fields!duedate.Value and fields!valuehome_1). ...
0
votes
2answers
94 views

What is the most accurate way of using DATEDIFF in SQL Server?

I have two computed columns (MonthsInService and YearsInService) with the following expressions. MonthsInService = (datediff(month,[DateEngaged],getdate())) YearsInService = ...
0
votes
1answer
72 views

How to break up a date range in sql by months

I have two sql tables. they are for employees at a company. one table has the usual details (id,name,surname) and another table has their leave info (empid *foreign key to id in employee ...
0
votes
0answers
148 views

compare two dates in Crystal Reports 9

I need some help with the following statement in Crystal Reports 9. If {it_specific_action.rl_start_dt} > {it_change.need_by_dt} then Color (150,230,150) else Color (10,19,200) I want to ...
0
votes
2answers
169 views

The bug Fatal error: Cannot redeclare date_diff() in

I used cakephp with version 1.1.7692. When i run it with php ver > 5.3.2, it has bug : Fatal error: Cannot redeclare date_diff(). and i run it with php ver 5.2.9, it display very text and code ...
0
votes
3answers
257 views

SQL - datediff (minutes) exclude weekends

can you help me, I´m using below sql view(which then I´m using in crystal reports). I need there date differences(in minutes), but now I need to exclude weekends. Please help :) SELECT intwc ...
-1
votes
2answers
40 views

Date difference using months

I have month names in my database, for eg. tomonth and frommonth. The data stored is like 'JAN', 'FEB' etc. What do I have to do to get difference between tomonth and frommonth?
0
votes
1answer
78 views

MySQL timediff — is it a bug?

This must return 1440 minutes and is working fine: select abs(round((TIME_TO_SEC(TIMEDIFF('2013-03-13 10:00', '2013-03-14 10:00'))/60),2)) ; (2) same ...
0
votes
3answers
208 views

DATEDIFF Round off cutoff date hours SQL Server

My client has this KTV hour rule all check out above 20 mins will be considered as additional 1 hour. Example code below: declare @dateStart as datetime, @dateEnd as datetime set @dateStart = ...
0
votes
3answers
61 views

DATEDIFF with cutoff time

I'm working on a Room Scheduling application. We have this Room Check Out Rule that we need follow. All room check out should be 12:00 PM. If the check out date is after 12.00 PM it will be ...
1
vote
2answers
91 views

Do a SELECT on all tables between 2 dates

I have a Mysql Database with a table for each day, it goes this way: my_table_20130310, my_table_20130311 ... I want to do a select on all tables let's say between '2013/02/02' and '2013/03/28' ...
0
votes
2answers
214 views

SQL query DATEDIFF returning NULL

I am writing this query in the mySQL DB. The table listing has two columns StartDate & EndDate. I want to return the Duration ie number of days between these two dates using DATEDIFF. My query is: ...
0
votes
3answers
130 views

Calculating difference between days * price per day = value PHP [closed]

I'm currently working on a little form that allows people to book a stay at a hostel. Basicly, I get them to pick two dates. (Day of arrival & day of departure) Then I want to calculate the ...
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 ...
1
vote
1answer
73 views

Complex SQL QUERY with DateDIFF

I need to script a query to discard access logs that not exceeding a predetermined margin (eg. 2 seconds). That is, if each record was made by a user on a especific date / time, I don't want to get ...
2
votes
1answer
113 views

MySQL : How to count multiple row where datediff() is less than 30

According to this topic (MySQL : Count row where sum of left day is less than 30) that I created before. Now I have another problem. I need those rows that going to be expired within 30 days ahead ...
0
votes
1answer
25 views

date datediff without weekend how can it work with 2 diffrents years

hi i have also a problem with datediff without week end, if you can help me: i try to find days between two dates and it's give the right result when the dates are in same year, but when the date ...
0
votes
1answer
70 views

mysql assignment within function

I have a history table with a DATETIME column. Is it not possible to assign a variable within a DATEDIFF function? The following statement: SET @LASTDATETIME='2000-01-01 00:00:00'; SELECT DATETIME, ...
0
votes
2answers
147 views

TSQL Calculating daily sum across records with overlapping date ranges

I have 3 tables, 1 (PortfolioInstrument) holds instruments (Instrument) held in a portoflio with the holding (Holding) across a date range (DateAdded, DateRemoved). Another (Price) holds daily ...
0
votes
1answer
101 views

Calculate difference in time between two rows

I have a table with fields username and a lastUpdateDateTime. If the user makes more than one entry into this table I would like to see what the difference is between the first and last entry is in ...
0
votes
2answers
171 views

SQL Query for all Records at Least 30 days old

I am trying to track user data for when users log in to an application. What I am trying to pull from my query (below) is all users who have not logged in for the past 30 days or more. However, it is ...
0
votes
3answers
70 views

datediff causing error in php

I have sql statement that works great in mysql, where I'm am using datediff. When I try to use it in php, I get an "mysql_fetch_arrary() expects parameter 1 to be a resource, boolean given in" This ...
0
votes
0answers
91 views

MS Access Creating Calculated Form Field from a Join

As a newbie to MS Access (but not SQL or coding), I'm bumping up into an issue that might be conceptual rather than a code issue (but certainly could be). I have a table of historical client data in ...
0
votes
1answer
419 views

SQL Server : Computed Column DATEDIFF Clause

What I'm trying to do is the following: I have 3 columns (Control_OpenDate, Control_Record Age, Control_Stage2). Once the row is inserted it will populate Control_OpenDate (01/27/2013) and ...
-2
votes
1answer
69 views

DateDiff with SQL Query [closed]

I'm wondering if anyone might be able to point out the issue with the following code. In particular, the dateDiff part. What I'm trying to do is figure out the difference (in days) between sending an ...
0
votes
2answers
147 views

order by DATEDIFF gives Conversion failed error

I'm editing a query i build in ms sql. I need to order the items on date, but that gives an error. locations_aanvang gives 2012-08-12(yyyy-mm-dd). so i extend it to 2012-08-12 00:00:00 +1:00 for EST ...
0
votes
1answer
120 views

DateDiff gives A constant expression was encountered in the ORDER BY

I want to edit a query but I'm stuck. I want to order by a date (originally '2012-12-28') but i read it must be converted to unix timestamp to do that. I don't know if i am doing it wrong so please ...
0
votes
0answers
94 views

Comparing dates in a OLE source of an SSIS package

I am trying to create an SSIS package which pulls a set of records from the database by checking a date field (MODIFYDATE) in the table against a package variable (User::LastUpdate). Records where ...
1
vote
1answer
136 views

Compare date from php and MSSQL to retrieve the nearest date from now

I want to compare MMSQL date together and i want to retrieve the nearest date from now. Here is a sample of my mssql date data : 2013-01-23 09:34:03.000 My table is like this: NAME : myTable ...
2
votes
4answers
95 views

Valid MySQL query not returning result

I have a query in MySQL (thanks to user Ross Smith II) that I have tested in console, (returned 1 days 10 hours 34 minutes a few hours ago) I am relatively sure my PHP is correct to, although it's ...
1
vote
2answers
147 views

MySQL: time between rows

I'm new to MySQL and I'm trying to figure out how to calculate the time passed between the rows in a log table. The table is a basic table with ID , Hostname , Info , Timestamp, with data like: ...
-1
votes
2answers
217 views

SQL get Monthly, and weekly data

I am writing a query to give me number of products sold this week, this month and this year (3 separate columns) on a week to date, month to date and year to date scale meaning today for example it ...
1
vote
2answers
99 views

IS DATEDIFF function allows query [closed]

I want to write a query using DATEDIFF Function in SQL. When I try SELECT AVG(DATEDIFF(hh,raise_date,(select min(added_note) from t_case_note) )) FROM mytable I get the error message Cannot ...
0
votes
1answer
314 views

SQL query-How to calcucate average time difference from two dates in format : 5 days 13 hours

I wrote SQL expression in format: select date1,date2, cast ( Floor ( timestampdiff (4, char ( timestamp (DATE2)- timestamp (DATE1)))/1440) as char (3))||'days' ||' ' || cast ( ...
0
votes
4answers
151 views

Using datediff in sql jdbc query

I'm attempting to create a JDBC query with the following statement String query = "SELECT COLUMN1,DATECOLUMN2 FROM tableName + "where datediff(d,DATECOLUMN2,getdate()) <= 1"; st = ...
1
vote
2answers
398 views

Sql query to subtract dates and order by hours

I have table like this Id Student Test_Start Test_End 1 A 2013-01-08 15:00:17.100 2013-01-08 16:05:55.100 2 B 2013-02-08 17:01:11.800 2013-02-08 19:05:15.880 3 ...
0
votes
2answers
62 views

Select previous 3 months

I am looking to select tickets from the previous 3 months. By calculate the previous 3 months. I saw this post: Calculate 3 month period using MySQL But it does not seem to work. Here is my query ...
0
votes
1answer
203 views

DateDiff and regional settings

I've got a VBscript that runs on devices placed all over the world and therefore uses various regional settings. A part of my script is calculating the difference between 2 dates, but I can't get ...
1
vote
1answer
367 views

Convert DATETIME to Unix Epoch in Informix

I have a DATETIME column: SELECT mytime FROM mytable; mytime -------------------- 1/6/2013 10:41:41 PM I would like to write a SQL statement that returns the time in Unix Time format (seconds ...
1
vote
1answer
361 views

DATEDIFF() or BETWEEN for Date Ranges in SQL Queries

I have recently been informed that the use of the BETWEEN method in SQL is somewhat unreliable, and I should therefore be using DATEDIFF(). However, another programmer has informed me this is not the ...

1 2 3 4 5 7