如何检查MongoDB中的字段是[]还是{}?
要检查MongoDB中的字段是[]还是{},可以使用以下语法-
db.yourCollectionName.find({
"yourOuterFieldName": { "$gt": {} },
"yourOuterFieldName.0": { "$exists": false }
});让我们首先创建包含文档的集合-
> db.checkFieldDemo.insert([
... { _id: 1010, StudentDetails: {} },
... { _id: 1011, StudentDetails: [ { StudentId: 1 } ] },
... { _id: 1012, StudentDetails: [ {} ] },
... { _id: 1013 },
... { _id: 1014, StudentDetails: null},
... { _id: 1015, StudentDetails: { StudentId: 1 } }
... ]);
BulkWriteResult({
"writeErrors" : [ ],
"writeConcernErrors" : [ ],
"nInserted" : 6,
"nUpserted" : 0,
"nMatched" : 0,
"nModified" : 0,
"nRemoved" : 0,
"upserted" : [ ]
})以下是在find()方法的帮助下显示集合中所有文档的查询-
> db.checkFieldDemo.find().pretty();
这将产生以下输出-
{ "_id" : 1010, "StudentDetails" : { } }
{ "_id" : 1011, "StudentDetails" : [ { "StudentId" : 1 } ] }
{ "_id" : 1012, "StudentDetails" : [ { } ] }
{ "_id" : 1013 }
{ "_id" : 1014, "StudentDetails" : null }
{ "_id" : 1015, "StudentDetails" : { "StudentId" : 1 } }以下是检查MongoDB中的字段是[]还是{}的查询-
> db.checkFieldDemo.find({
... "StudentDetails": { "$gt": {} },
... "StudentDetails.0": { "$exists": false }
... });这将产生以下输出-
{ "_id" : 1015, "StudentDetails" : { "StudentId" : 1 } }热门推荐
4 庆双节祝福语简短
10 上班收到花束祝福语简短
11 许愿星姐妹祝福语简短
12 初八祝福语简短语
13 过年爱情祝福语大全简短
14 婚礼祝福语简短情话短句
15 学生开心成语祝福语简短
16 孙子结婚祝福语大全简短
17 祝福语大全简短赞美同学
18 参加儿子大学祝福语简短