Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|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

3 Answers

up vote 5 down vote accepted
UPDATE YourTable
    SET YourDateColumn = SUBDATE(YourDateColumn, INTERVAL 9 YEAR);
share|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

USE ADDDATE(old_date, INTERVAL -9 YEAR)

share|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
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 !!!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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