Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
181 views

MySQL: DATE_SUB/DATE_ADD that accounts for DST?

This returns 1 (aka TRUE) SELECT DATE_SUB(NOW(), INTERVAL 24*100 HOUR) = DATE_SUB(NOW(), INTERVAL 100 DAY); 100 days ago, the hour of day does not change. But due to Daylight Savings Time (US), 100 ...
3
votes
1answer
564 views

MySQL: DATE_ADD

Is there a difference between: SELECT DATE_ADD('2005-01-01', INTERVAL 3 MONTH); and SELECT '2005-01-01' + INTERVAL 3 MONTH;
3
votes
13answers
1k views

SQL Query Help: Transforming Dates In A Non-Trivial Way

I have a table with a "Date" column, and I would like to do a query that does the following: If the date is a Monday, Tuesday, Wednesday, or Thursday, the displayed date should be shifted up by 1 ...
2
votes
3answers
103 views

Does SQL Server optimize DATEADD calculation in select query?

I have a query like this on Sql Server 2008: DECLARE @START_DATE DATETIME SET @START_DATE = GETDATE() SELECT * FROM MY_TABLE WHERE TRANSACTION_DATE_TIME > DATEADD(MINUTE, -1440, @START_DATE) In ...
2
votes
1answer
531 views

How to use MySql date_add in Nhibernate?

This really puzzled for hours, I searched all over the internet, but got no working solution. Can someone point where the problem is ... thanks ! I created my own dialect class public class ...
2
votes
2answers
3k views

T-Sql 2005 Adding hours to a datetime field with the result within working hours

I have two Datetime fields that I wish to add together. They are in the following format: '01/01/1900 00:00:00'. The main issue with this is that I want the calculation to only include working hours. ...
2
votes
4answers
36k views

SQL Server 2005 Using DateAdd to add a day to a date

How do I in SQL Server 2005 use the DateAdd function to add a day to a date
1
vote
4answers
40 views

javascript add minutes to new Date(); before using the object

I have a function calls that start a bunch of timers and I want to add a few minutes to each one so they don't all start off at zero. I had success with: var currentDate = new Date(); var ...
1
vote
4answers
97 views

subtract date from sql column

need ur help again i have a sql table with column docid,proposedcompletiondate,docstatus doc_id ProposedCompdate Docstatus 0001 2011-10-30 A 0002 2011-11-29 ...
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
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
vote
4answers
95 views

Subdivide timestamps into 3 timeslots

I have following problem where I have to group different transactions into timeslots. Suppose you have a table with records which contain an entry datetimestamp. These records are created by users ...
1
vote
1answer
1k views

How to get week ending date of a given date returned from a DateAdd expression

Not sure how to take my current expression and get the week ending date of the week. My current expression returns the date, one week from today. DateAdd(DateInterval.WeekOfYear, 1, today()) What ...
0
votes
1answer
15 views

php 5.3 datetime add or modify?

i would like to add 2 hours to a Datetime object...... <? $now = new DateTime("now", new DateTimeZone('UTC')); // doesnt work! $now->modify(DateInterval('+2 hours')); // doesnt work! ...
0
votes
1answer
68 views

Excel 2010 Ignoring Year when performing Format(DateAdd(“d”, i, <some date>), “[$-409]d-mmm;@”)

I'm using Excel 2010 VBA and I'm creating a basic timeline. Here is the snippet of code that creates some column headers, in the form of "D-MMM", based off of a start date and skipping weekends. ...
0
votes
2answers
44 views

DATEADD using a decimal - workarounds?

I'm trying to do something like below (I've simplified the problem, to try and solve this individual part). PRINT DATEADD(week, 0.2, GETDATE()) Which I realise will not work due to the number ...
0
votes
2answers
51 views

MySQL DATE_ADD() when DATE is null

I have a DATETIME value "some_date" that can be null in my database. When I try the following query it returns nothing for those rows with date is null: SELECT * FROM tabel WHERE DATE_ADD(some_date, ...
0
votes
4answers
105 views

Select records from start of month to current date

I'm trying to select records that were added to the database between the start of the current month and the current day - I more or less know how to get records from the current day, and within a ...
0
votes
5answers
175 views

MySQL - DATE_ADD month interval

I face a problem with the function DATE_ADD in mysql. My request looks like this : SELECT * FROM mydb WHERE creationdate BETWEEN "2011-01-01" AND DATE_ADD("2011-01-01", INTERVAL 6 MONTHS) GROUP ...
0
votes
1answer
137 views

DATEADD() function to find values in this business day

How can I use the SQL DATEADD() function to find a record from this business day? For example: SELECT * FROM records r WHERE r.creationTime <= GETDATE() AND r.creationTime >= DATEADD(dd, -1 * ...
0
votes
1answer
43 views

using django orm to realize my filter

My raw sql statement is as follows: select* from t where dateadd(ss,closedate-datediff(ss,getdate(),getutcdate()),'1970-1-1') between convert (datetime,'2011-7-1 00:00:00') and ...
0
votes
1answer
41 views

Adding only certain days to a DateAdd in SQL?

I've got an inventory report I'm working with which calculates our average weekly consumption of a particular part and then divides it by what we have on hand to show us a numerical "weeks on hand". ...
0
votes
1answer
50 views

last occurence of date

I need to find the last occurence of a date (in my case a static date 1st of may) I made this which works but i know this can be done in a much smarter way declare @lastmay date set @lastmay = ...
0
votes
3answers
85 views

want to add a field to a timestamp with DATE_ADD

i want to add a column named column_ourcountry_time that will show the timestamp of the time when each row is created DATE_ADD INTERVAL 10 HOUR to current time of server in each row. when i use the ...
0
votes
1answer
535 views

DateAdd() returns faulty Date in SQL Server Reporting Services

I have a report that takes a date as a parameter. If I use =Parameters!Date.Value, the report runs fine. However, if I use =DateAdd("d", 1, Parameters!Date.Value), the report is left blank, even ...
0
votes
1answer
59 views

MySQL Implications of doing utc_date + 1 rather than using date_add(utc_date, interval 1 day)

I have some queries where day offsets are being coded as utc_date + 1 rather than using the date_add function. Are their any implications of using this method? I'm worried about it returning the wrong ...
0
votes
1answer
42 views

Whats wrong with my Date Query?

Having a problem with the following Query. i have a device table which logs devices founds in an area, along with a venue_id and a date-timestamp. I'm trying to get all devices in a venue from a given ...
0
votes
3answers
816 views

Using Parameters in DATEADD function of a Query

I am trying to us the DateAdd function of SQL in my Query. The problem is when I use a parameter to set the second arguement, the number argument I get an error which will say something like this: ...
0
votes
2answers
2k views

Date Math in Reporting Services Expression

I'm trying to add days to a date and then compare to see if it's outside a range to color code a cell. It's not working--I think I may be making a simple syntax error. iif( (DateAdd("d", ...
0
votes
5answers
617 views

How do I take a day of the year and 'bucket it' into weeks of the year in Microsoft SQL? Used in manufacturing scenarios for material requirements

I have a need to create a gross requirements report that takes how much supply and demand of a item in inventory from a start date onwards and 'buckets' it into different weeks of the year so that ...
-2
votes
1answer
130 views

Add timespan to a date?

Can anyone think of an efficient way of adding a timespan to a date? Something like the following: <cfset foo = now() + createTimeSpan(15,12,30,30)> IIRC in a .NET-based CFML engine I ...