发布于 2015-09-14 14:59:13 | 122 次阅读 | 评论: 0 | 来源: 网络整理

$pull

The $pull operator removes all instances of a value from an existing array. Consider the following example:

db.collection.update( { field: value }, { $pull: { field: value1 } } );

$pull removes the value value1 from the array in field, in the document that matches the query statement { field: value } in collection. If value1 existed multiple times in the field array, $pull would remove all instances of value1 in this array.

最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务