我在这里运行的查询在mongo shell界面中产生一个空白(没有数字,基本上没有):
> db.classrooms.update( { "c_type" : { $exists : true } }, { $unset : { "c_type" : 1 } }, false, true);
另外,我检查了应该删除c_type的集合行,但它们仍然存在。
我基本上是尝试使用unset命令删除集合中的列/字段。我的语法有问题吗?
谢谢!
答案 0 :(得分:1)
继我的评论之后,这是我测试的例子:
MongoDB shell version: 2.0.6
connecting to: test
> db.classrooms.insert({"example": "field", "c_type" : "Open"});
> db.classrooms.insert({"example": "array", "c_type" : ['Available']});
> db.classrooms.insert({"example": "obj", "c_type" : {'Booked' : 'Yes'}});
> db.classrooms.find()
{
"_id" : ObjectId("502abd4a332f362f58906683"),
"example" : "field",
"c_type" : "Open"
}
{
"_id" : ObjectId("502abd4e332f362f58906684"),
"example" : "array",
"c_type" : [
"Available"
]
}
{
"_id" : ObjectId("502abd53332f362f58906685"),
"example" : "obj",
"c_type" : {
"Booked" : "Yes"
}
}
> db.classrooms.update(
{ "c_type" : { $exists : true } },
{ $unset : { "c_type" : 1 } },
false, // upsert
true); // update multiple records
> db.classrooms.find()
{ "_id" : ObjectId("502abd4a332f362f58906683"), "example" : "field" }
{ "_id" : ObjectId("502abd4e332f362f58906684"), "example" : "array" }
{ "_id" : ObjectId("502abd53332f362f58906685"), "example" : "obj" }
答案 1 :(得分:0)
想出来。基本上我不得不加倍引用$exists
和$unset
:
> db.classrooms.update( { "c_type" : { "$exists" : true } }, { "$unset" : { "c_type" : 1 } }, false, true);