查询
col_test数据集名称
find查找
isValid字段名
$where 查询条件
db.col_test.find(
{
"isValid":1,
"$where":
"this.content != this.afterMark"
}
)
update 修改
$set后面接修改的属性
{mutil:true,upsert:false}加上这个才能批量修改
db.col_test.update(
{
"isValid":1,
"$where": "this.content != this.afterMark"
},
{
"$set":{"html":"","afterMark":"","labelStatus":0,"markId":"","isValid":""}
},
{multi:true,upsert:false}
)