Home > 日付の引き算


MongoDBで日付を引き算する方法

フィールド間の日付の差分を計算する方法:以下のAggregationパイプラインを使用して、フィールド間の日付の差分を計算することができます。db.collection.aggregate([ { $project: { dateDifference: { $subtract: ["$endDate", "$startDate"] } } } ])>>More