I have a database where I inserted the dates in the format dd/mm/yyyy
(example: 05/11/1987
), but now I'm organizing reports and I need to update all the dates in the database to the format yyyy-mm-dd
1987-11-05
). How do I do this in MySQL?
Remembering that this is not a duplicate, since I am wanting to update the data in the database and not select them in another format.