I have a MongoDB that includes a data field in ISODate
format. One record, for example, could be ISODate("2013-11-16T00:00:00Z")
Now I need to convert this to MySQL datetime
format through Mongo Shell.
How can I use Mongo Shell to convert that value to a MySQL datetime
format, 2013-11-16 00:00:00
in this case?