MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

come convertire il timestamp fino ad oggi in mongodb?

Puoi utilizzare $toDate aggregazione per convertire il timestamp in data ISO e $toLong per convertire il timestamp della stringa in un valore intero in mongodb 3.6

db.collection.aggregate([
  { "$project": {
    "_id": {
      "$toDate": {
        "$toLong": "$_id"
      }
    }
  }},
  { "$group": {
    "_id": { "$dateToString": { "format": "%Y-%m-%d", "date": "$_id" } },
    "count": { "$sum": 1 }
  }}
])

Provalo qui

E con le versioni precedenti

db.collection.aggregate([
  { "$project": {
    "date": { "$add": [ new Date(0), "$_id" ] }
  }}
])