I have bunch of dates in format YYYY-MM-DD

But I have all year in 2020-MM-DD

I want to change it to 2011-MM-DD

How can I achieve this ?

link|improve this question

What's the datatype of the column in question? – Joe Stefanelli Dec 14 '11 at 20:12
Data type of the column is date – Chinmay Dec 14 '11 at 20:15
feedback

3 Answers

up vote 3 down vote accepted
UPDATE YourTable
    SET YourDateColumn = SUBDATE(YourDateColumn, INTERVAL 9 YEAR);
link|improve this answer
Thank you so much for reply. I just tried it and it actually added 1 to year i.e. it made my date from 2020 to 2021. Is their any function to decrease the interval ? – Chinmay Dec 14 '11 at 20:20
Sorry I had mistyped my question. It is actually My dates are in format 2020-MM-DD and I want to convert it to 2010-MM-DD. I am so sorry – Chinmay Dec 14 '11 at 20:22
@ChinmayMurugkar To go from 2020 to 2011, use SUBDATE(YourDateColumn, INTERVAL 9 YEAR) I've edited the answer to reflect this. – Joe Stefanelli Dec 14 '11 at 20:23
Thank you so much..it worked. – Chinmay Dec 14 '11 at 20:25
feedback

USE ADDDATE(old_date, INTERVAL -9 YEAR)

link|improve this answer
Thanks for reply. Sorry I had mistyped my question. It is actually My dates are in format 2020-MM-DD and I want to convert it to 2010-MM-DD. I am so sorry – Chinmay Dec 14 '11 at 20:23
I have edited my answer to reflect this. The answer is slightly different than @Joe Stefanelli's, but works the same way. – Jason Dec 14 '11 at 21:11
feedback
UPDATE YourTable 
SET YourDateColumn = ADDDATE(YourDateColumn, INTERVAL 1 YEAR)
WHERE YourDateColumn >= '2010-01-01'
AND YourDateColumn <= '2010-12-31'; 

If your table down not have an index on the date field, you could get away with this:

UPDATE YourTable 
SET YourDateColumn = ADDDATE(YourDateColumn, INTERVAL 1 YEAR)
WHERE YEAR(YourDateColumn) = 2010;

To fix your date problem with 2020 going to 2021 run this:

UPDATE YourTable 
SET YourDateColumn = ADDDATE(YourDateColumn, INTERVAL -1 YEAR)
WHERE YEAR(YourDateColumn) = 2021;

BTW Since I copied Joe Stefanelli's original code, +1 for him !!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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