Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I need to convert date format in ORACLE.The current value is 0080-08-24 and i want to convert it into 1980-08-24 How to update above value?
Try this:
update tablename set datecolumn= add_months(date'0080-08-24',1900*12)
Add a comment
Just for completeness, another solution:
SELECT TO_DATE('0080-08-24','"00"RR-MM-DD') FROM DUAL; 24-AUG-1980
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.