vote up 0 vote down star
1

I need a way to update the month value on a dateTime field in my db. I'm being past an int value for the month and need to use that for the update. Is it possible to do this in the sql statement or would I be best doing it in c# in the webservice?

flag

Is the integer you are being passed the new month value, or an increment? – Dana Oct 2 '08 at 14:27
Please post your code. – Cade Roux Oct 2 '08 at 14:44

2 Answers

vote up 1 vote down check

Shift down and then up again:

UPDATE table
SET datecol = DATEADD(m, @newmonth, DATEADD(m, -MONTH(datecol), datecol))
WHERE id = @id

or, more simply:

UPDATE table
SET datecol = DATEADD(m, @newmonth - MONTH(datecol), datecol)
WHERE id = @id
link|flag
Thanks, I get this error message though. Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression. The statement has been terminated. – bazjapan Oct 2 '08 at 14:34
You need to post your code, my query does not have anything to do with that, because it does contain any subqueries. – Cade Roux Oct 2 '08 at 14:38
This is what I have. DECLARE @newMonth int SET @newMonth = 5; UPDATE dbo.tb_bookings SET startDateTime = DATEADD(month, @newMonth - DATEPART(month, startDateTime) , startDateTime) WHERE requestPackID = '383'; – bazjapan Oct 3 '08 at 0:15
I think you might have a trigger problem. That code doesn't have any subqueries, and even if multiple rows are to be affected it will work. Now, if multiple rows are affected the trigger may not expect this - remember an UPDATE trigger will fire only once on this statement. – Cade Roux Oct 3 '08 at 2:55
Thanks, I think you may be right with the trigger. I'll look into it. – bazjapan Oct 3 '08 at 5:25
vote up 1 vote down

You can do this all in TSQL in Sql Server. Check out the DateDiff and DateAdd functions.

I expect this would work:

DECLARE @newMonth int
SET @newMonth = 5 --As an example

UPDATE dbo.TheTable
SET DateField = DATEADD(month, @newMonth - DATEPART(month, DateField) , DateField)
link|flag
Thanks however I need to update multiple rows and am having errors regarding the subquery returning more than one value. – bazjapan Oct 2 '08 at 14:54
There aren't any subqueries in this example and this will work fine when updating multiple rows in a table. You may want to post the specific code you are having problems with. – akmad Oct 2 '08 at 15:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.