1
vote
4answers
61 views
How to use DATEDIFF? How many days are inside of two dates.
How to use DATEDIFF? How can I make this to work? or should I use DATEDIFF completly differently?
SELECT DATEDIFF('Started ','will_end') AS 'Duration' FROM my_table WHERE id = '110';
I try to get …
0
votes
2answers
19 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 …
1
vote
2answers
105 views
MySQL joining four tables and using WEEK and DATEDIFF to get current data?
Hi!
I'm trying to write a query getting information from four tables and I'm not able to figure it out. Can someone please help me with some guidance?
The model is that a user can book a room for a …
0
votes
3answers
83 views
SQL Time Tracking Query
Data:
EmpNumber, TimeStamp, AreaName
10632, 2009-11-23 16:40:33.000, OUT_1
10632, 2009-11-23 16:39:03.000, IN_1
10632, 2009-11-23 16:38:56.000, IN_1
10632, 2009-11-23 …
1
vote
2answers
47 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
77 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, …
1
vote
2answers
35 views
Inconsistent MySQL DATEDIFF behavior
When I use this query:
SELECT COUNT(*) FROM `my_table` WHERE DATEDIFF(NOW(), updated) > 2
MySQL executes the query with no errors and I get the count of rows that have not been updated within …
0
votes
3answers
61 views
Finding data closest to date?
I have a table
CREATE TABLE `symbol_details` (
`symbol_header_id` int(11) DEFAULT NULL,
`DATE` datetime DEFAULT NULL,
`ADJ_NAV` double DEFAULT NULL
)
with ~20,000,000 entries. Now I want to …
0
votes
6answers
112 views
determining if a new week in coldfusion
I need to determine if a set of dates contain two different weeks.
For example:
When returning a set of records from a database that contain a date, there needs to be something to distinguish …
3
votes
4answers
4k 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 …
2
votes
7answers
228 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 …
0
votes
1answer
347 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
4answers
1k 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
11answers
2k 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#.
2
votes
5answers
922 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 …
