MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Como calcular a diferença de timestamp no mongodb (em horas)?

db.collectionname.aggregate([
  {$project: {
      duration: {$divide: [{$subtract: ["$endtime", "$starttime"]}, 3600000]}
  }}
])