Returns a specified date with the specified number interval (signed integer) added to a specified datepart of that date.

learn more… | top users | synonyms

1
vote
3answers
88 views

TSQL Fill gaps in months and repeat values in column

Started with TSQL last Wednesday... I have the following data in tblStage1: PROJECT USERNAME DATE PERCENTAGE --------- ----------------- ------------ ...
1
vote
2answers
88 views

SQL DATEADD Returning Incorrect Results

I'm currently writing a query for Visual Studio 2012 and testing it in Microsoft SQL Server Management Studio using SQL Server 2008 R2. At the moment, I've read through MSDN's article on datetimes ...
0
votes
1answer
28 views

Setting date end parameter to 12 months ago

I have to pull some comparative data and want to set the reoport to run automatically. To get the first date range I use parameters =DateAdd("m", -3, DateSerial(Year(Now()), Month(Now()), 1)) ...
0
votes
2answers
35 views

UPDATE row relative to CURRENT_TIMESTAMP is not giving the correct value

I am trying to update a MySQL table with an 'expiration date'. I've collected a timestamp value for all my rows as people have registered into the table but now I want to create an expiration date ...
0
votes
1answer
46 views

MySQL date_add and repeat forever

I got an alert table for users, in which we have to send alerts to users in user defined intervals like 0 ( only once), 3 months, 6 months, 1 year So I designed a table like this id | user_id ...
0
votes
0answers
57 views

How to make DATEADD (or equivalent) work in LibreOffice Calc?

[LibreOffice Calc Version 3.6.2.2 (Build ID: 360m1(Build:2)) on Ubuntu 12.10 64 bit.] What I want to do is very simple: take a date from one cell, say B1, a number of months from a second cell, say ...
0
votes
0answers
98 views

TSQL WHERE LocalDateTime >= DATEADD returns an extra hour of data with NULL values

When I query my DB with SELECT * FROM dValues WHERE positionID = 1 I receive 2013-04-05 07:00:00 as the most recent time stamp in the LocalDateTime column present in the DB for which data exists. ...
0
votes
3answers
65 views

How to use DateAdd function in Linq?

I have an events that users can post and related comments can be added for each events, although i have my db engine resides in the server in Us but i am living in east Europe(Cy) and we have like 7-8 ...
0
votes
1answer
70 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
1answer
66 views

Determine DATEPART by int value in SQL

OK, so I am doing a software tool that alerts CRB's that are going to expire. The expiry intervals are determined by the user of the program. I am currently using SQL Server 2008. So I am trying to ...
0
votes
3answers
67 views

dateadd - finding a date in the past

I have an odd problem with subtracting 18 months from a date. Consider the following snippet: Convert(dateTime,CREATION_DATE,103) > DateAdd (MONTH, -18, Convert (DateTime, @IN_ACTIVITY_DATE, ...
0
votes
1answer
69 views

MySQL selecting date range but also between

My db is made of groups of entries (by user) with a row for each day of the week and also groups where there is only 1 row per week of the year. This week may start Sat, Sun or Mon. The sql groups ...
0
votes
1answer
76 views

how to add day to date in ejbql

I am trying to achieve dateadd in my EJB query. I tried something like this but it doesn't work: select t.date + 1 from Table t Once I tried executing that code, this exception comes out: ...
-1
votes
2answers
205 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 ...
0
votes
1answer
85 views

Applying an dateadd SQL to all rows

So I've used a range of queries to try and add 23 hours to all dates in the column 'match_date' and have received a variation of errors from all of them including syntax errors and errors stating that ...
0
votes
1answer
129 views

Dateadd error when subtracting from 0:00

I am trying to convert column with GMT hour to the specified time zones from the user. I get an error when VBA attempts to subtract 18000 secs (GMT-5) from 01:00. Selected_GMT = -18000 CellValue = ...
0
votes
1answer
208 views

Problems with SQL syntax DATEADD

SELECT hd.holiday_code, hd.holiday_duration, hdep.departure_date AS 'Start Date', Dateadd(day, hd.holiday_duration, hdep.departure_date) AS ...
1
vote
1answer
337 views

Need to add constraint: date plus 10 days

I'm trying to add a constraint to a table so that it displays one of the columns as the current date plus 10 days. Here's what I've tried so far (I'm very new to SQL): ALTER TABLE orders ADD ...
1
vote
4answers
261 views

INSERT INTO SQL DATEADD Yesterday

I want to use PHP and MySQL to INSERT the the day of Yesterday. So my idea was: INTO chartValues SET timestamp='1353369600', `datetime`=DATEADD(d,-1,GETDATE()) But its not working: 1064 - You ...
0
votes
4answers
198 views

Excel, VB - Subtract Days from Date Using DateAdd()

ISSUE I wish to subtract a 1 to 3 digit number stored in an array from a date field in the worksheet. I take the absolute value of the number, multiply it by negative 1, then use the DateAdd function ...
0
votes
2answers
2k views

How to select last one week data from today's date

How to select week data (more precisely, last 7 days data) from the current date in the fastest way as I have millions or rows in the table. I have a time stamp of created_date in sql table. I have ...
0
votes
3answers
64 views

Is it possible to use values from another table as the interval in a DATEADD function?

I have a table of events containing a date (smalldatetime). I have a table of intervals (int) (days before) for when a reminder should be sent - DATEADD(D, *interval*, GETDATE()). I'm trying to write ...
1
vote
2answers
421 views

SQL Server: convert to today then add 8 hours: part II

In my older post, I tried to change the date to current date and add 8 hours time. SQL Server: convert to today then add 8 hours UPDATE business.dbo.db_schedule SET nextUpdate= DATEADD(hh, 8, ...
0
votes
1answer
252 views

SQL Server: convert to today then add 8 hours

nextUpdate can be any date time value in the past. I'm trying to update the nextUpdate field to today's date but keeping the time unchanged and then add 8 hours. I get error converting string ...
0
votes
1answer
93 views

mysql date_add 2 times in procedure

i want to use Date_add 2 times in a procedure, but it returns 0 rows (while it should return rows) Here is the procedure select av.*, ap.*,c.* from tbl_available av left join tbl_appointment ap ...
1
vote
2answers
136 views

Populating the primary ID column with a sequential number in an SQL Server table

I've had a look around the forum and I can't find anything that fits my question exactly. This query is supposed to add recurring holidays for employees. If I exclude the PL_ID variable and just have ...
-1
votes
1answer
158 views

adding recurring employee holidays in sql server

i currently have this table in SQL server: PL_ID User_ID Log_Date Out_Time In_Time Reason Details PL stands for people logger... then you have the user ID, the log date (date of day off), ...
0
votes
2answers
94 views

count number of users for past 7 days from a given date

I have table in which I have to update the number of users on that particular date and number of users in past 7 days from the given date. Sample data looks like Date UserCountToday ...
0
votes
2answers
168 views

SQL : counting calls in 10 min increments

I need to determine how many calls we take in 10 min increaments for the month. I have the following SQL query that works on the half hour but I can not get it to work on 10 minute increments. I am ...
2
votes
3answers
848 views

Using sql DATEADD function in java

When I run queries using DATEADD it seems that the database does not recognize this function. also when I just run select DATEADD(Month, -3, GETDATE()) I'm getting: Error code -1, SQL state 42X01: ...
0
votes
0answers
104 views

Default Zero Time value in Access vs SQL Server

I am working on an application with an Access front end a SQL server back end. I have several datetime values that are currently only holding the time. The issue I am having is that Access stores it ...
5
votes
1answer
239 views

Don't understand why DATEADD is not incrementing datatime

Migrating data from Access into SQL Server. SQL Server table defines inst_id, cons_code, and eff_date_time column as primary key. The eff_date_time data coming from access is not unique so I was ...
0
votes
1answer
238 views

Need a date instead of datetime in SQL Server 2005 with dateadd

I've got a query that get's a date of a field in a program. This date has to be modified with 10 years. The query I made is SELECT DATEADD(yy, +10, '"+thisfield.value+"') where ...
0
votes
1answer
324 views

What is the alternate of below sql in SQLite?

Table 'Curcommtb' has column 'DModify' and 'Count' What is the alternate of below sql in SQLite? 'select dateadd(day,count,DModify) from Curcommtb'
2
votes
3answers
535 views

PHP add 'x' amount of hours to date?

I currently have php get the current time/date like so: $now = date("Y-m-d H:m:s"); What id like to do is have a new variable $new_time equal $now + $hours. $hours being an amount of hours ranging ...
0
votes
0answers
56 views

update all DATE and DATETIME fields, without knowing their field names

I would like to update all the fields in a table (of datatype DATE or DATETIME) by one year. I understand DateAdd(), that's no problem. But I don't/won't know the names of all the fields. So what I ...
0
votes
0answers
302 views

Xcode adding date by user input and date picker

On this app which I am trying to create; I want user to input a number of days that he will work on a task on UITextField and pick date from DatePicker from when he will start the task; then app will ...
1
vote
5answers
354 views

Adding years to a date resets to 1970-01-01

$somedate = "1980-02-15"; $otherdate = strtotime('+1 year', strtotime($somedate)); echo date('Y-m-d', $otherdate); outputs 1981-02-15 and $somedate = "1980-02-15"; $otherdate = strtotime('+2 ...
0
votes
1answer
201 views

DATEADD and missing dates

How do you reliably add 10 months to a date in the DAX formula for a PowerPivot calculated column? My first attempt only works for dates that already exist in the EventDate column. ...
1
vote
2answers
833 views

DATEADD, DATEPART not returning desired results

I am not sure if my brain is working because it is Monday. I want to add a single year to the current year but I am getting undesired results. Here is what I am getting: select current_timestamp ...
1
vote
2answers
798 views

Converting timestamps to human readable in MS Access

I have dozens of MySQL tables linked in a MS Access program. There are also a dozen or so Queries which pull these tables togather and provide data in a human fashion, especially converting timestamps ...
0
votes
1answer
86 views

Building an eShop 'Latest Products'

I was trying to do a 'Latest Products' page for an eShop project I'm working on. Basically, I want to show a number of products, say 10, from a table in my db that where added in my database in the ...
2
votes
3answers
86 views

Could somebody explaine difference between two queries?

The first query is: declare @myDate datetime = DATEADD(D,-2000,getdate()) SELECT * FROM [myTable] where CreatedDate >= @myDate The second query is: SELECT * FROM [myTable] where CreatedDate ...
0
votes
3answers
195 views

SQL 2005 Update Query

I'm trying to write an UPDATE SQL Query to clean up my database a bit... Here's what I've tried but it did create huge problems for me and ended up not honoring all of my WHEREs which changed records ...
0
votes
1answer
407 views

Define a parameter for searching on days DATEADD / datediff - SQL server 2005

So I have now a grouping of values by their currencies and values, which brings out values for the last 30 days, however I would like to search by date, eventually using a parameter from another ...
1
vote
3answers
2k views

MySQL DATE_ADD INTERVAL

mysql_query("UPDATE tablename SET date = DATE_ADD(DATE(NOW() + INTERVAL 1 WEEK), INTERVAL 17 HOUR), INTERVAL 30 MINUTE) WHERE idevent = '2'") or die(mysql_error()); I want to add 7 days ...
2
votes
2answers
303 views

Relative Date Calculation Algorithm in SQL

I have a requirement to calculate the next monthly run time of a job which can be specified using two parameters which can take values from Parameter 1: 1 for Sunday, 2 for Monday, 3 for Tuesday, 4 ...
3
votes
1answer
687 views

MySql: Date_add returns BLOB

i have the next query: select avHours, date_add('2010-01-20', Interval 2 DAY) from tbl_available order by avHours; but it returns a blob field and not a date field. when i see the value in the ...
0
votes
3answers
2k views

Datediff GETDATE Add

In this type of code, AND Orders.ShipDate >= DATEADD(Day, Datediff(Day,0, GetDate() -6), 0) It supposed to pull records with the date 6 days ago, until today. How can I make it pull records from ...
3
votes
2answers
209 views

DATEADD - How do i make comparisons

I am trying to check if the second attempt(u can imagine anything like password attempt, download attempt etc) is made within a time limit(@window) starting from attempt1 time(@start). Why does this ...

1 2