在mongodb中使用$和$ match匹配

时间:2013-12-09 11:39:23

标签: mongodb match

我试图在MongoDB中使用以下查询,但它没有运行。

db.test.aggergate(
$match: {$and: [type: {$in: ["TOYS"]}, type: {$nin: ["BARBIE"]}, time: 
{$lt:ISODate("2013-12-09T00:00:00Z")}]}})

它表示无效字符“:”。

是否可以使用$和$ match?我在这个论坛上看到过$或者$ match的例子,所以我认为这是可能的。

提前感谢您的帮助和指导。

4 个答案:

答案 0 :(得分:63)

  

$和$ match的工作正常。

您的查询中存在语法错误。试试这个。

db.test.aggregate([
                   { 
                     $match: {
                          $and: [ 
                              {type: {$in: ["TOYS"]}}, 
                              {type: {$nin: ["BARBIE"]}}, 
                              {time: {$lt:ISODate("2013-12-09T00:00:00Z")}}
                          ]
                     }
                   }
                  ])

对于您要做的事情,您不需要$and

答案 1 :(得分:5)

如果有人想拒绝我的回答,没关系,这是一个缺乏研究的典型问题

db.test.find( {$and: [ {"type": {$in: ["TOYS"]}}, 
                       {"type": {$nin: ["BARBIE"]}}, 
                       {"time": {$lt:ISODate("2013-12-09T00:00:00Z")}}
                     ]
})

AND与FIND一起工作,接收匹配数组(但它不是匹配指令) 聚合框架用于完全不同的东西,就像单词所说的那样,用于聚合(计数,求和,平均等等,值得分组或展开等)

答案 2 :(得分:3)

{
  $match: {
    $or:[
      {'sender':sender, 'recipient':recipient},
      {'recipient':sender,'sender':recipient}
    ]
  }
}

使用$或

答案 3 :(得分:0)

以下是我如何处理许多$以及$或

User.aggregate([
 {
  $lookup:{
   from:'influencers',
   localField:'_id',
   foreignField:'user',
   as:'influencer'
 }
 },
 { $match:{ '$and': 
  [ { '$and': [ { 'influencer.aboutMe.birthday': { '$lte': 2017-09-11T09:10:07.283Z } } ] },
  { '$and': [ { 'influencer.aboutMe.minPrice': { '$gte': 0 } } ] },
   { '$and': 
    [ { '$or': 
        [ { '$and': [ { 'influencer.followed_by': { '$gte': 0 } } ] },

         { '$and': [ { 'influencer.youTubeSubscribercount': { '$gte': 
  0 } } ] } ] } ] },
 { 'influencer.isAdminverified': true },
 { 'influencer.status': 'Verified' } ] } }

]);