I am just starting to learn about MongoDB and hoping to slowly migrate from MySQL.
In MySQL, there are two different data types - DATE ('0000-00-00')
and DATETIME ('0000-00-00 00:00:00')
. In my MySQL, I use the DATE
type, but I am not sure how to transfer them into MongoDB. In MongoDB, there is a Date
object, which is comparable to DATETIME
. It seems it would be most appropriate to use Date
objects, but that would be wasting space, since hours, min, sec are not utilized. On the other hand, storing dates as strings seems wrong.
Is there a golden standard on storing dates ('0000-00-00')
in MongoDB?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…