搜索

首页  >  问答  >  正文

mongodb subset方式的查询

例如以下一个collention:

  1. { test: [1,2,3] }
  2. { test: [1,3] }
  3. { test: [2] }
  4. { test: [3,4] }
    如何实现查找test数组是另一个数组 [1,2,3]子集的结果?
    类似于$all查询,但与$all相反。
    db.coll.find({ test: {$subset: [1,2,3] }})得到的结果应该是除了4以外的其它几个。
黄舟黄舟2764 天前659

全部回复(1)我来回复

  • 阿神

    阿神2017-04-22 09:01:11

    雷雷

    回复
    0
  • 取消回复