MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

ISO-Datum in Zeitstempel in Mongo-Abfrage konvertieren

Mongodb 4.0 hat $toLong eingeführt Aggregation, die Datum in Zeitstempel umwandelt

db.collection.aggregate([
  { "$project": {
    "createdAt": {
      "$toLong": "$createdAt"
    }
  }}
])

Sie können es hier versuchen