标签: mongodb mongoose
mngo数据库中最后一个$ cond中的1,0是什么意思?第4行。
1
0
single_registration: { $cond: [ { $and: [ { $gte: [ "$registration_created", startDateFirst ] }, { $lte:[ "$registration_created", endDateFirst ] } ] }, 1, 0 ] },
答案 0 :(得分:1)
$cond数组内容的定义是“ if,then,else”。因此,这表示“如果此条件为真,则1,否则为0。”
$cond