db.getCollection("P_OBJECT_DATA").update(({$and: [{"筛选条件1": 筛选条件值1}, {"筛选条件2": 筛选条件值2}]}),{$set:{"要更改的属性字段": "要设定的值"}}, { multi: true});
其中{ multi: true} 表示更改多条,如果不加则只更改一条。
示例:
db.getCollection("P_OBJECT_DATA").update(({$and: [{"categoryId": NumberLong("1455836912663224336")}, {"fileformat": null }]}),{$set:{"fileformat": "tif"}}, { multi: true});
PS:一定要注意括号的对称