createdCollectionAutomatically在MongoDB中是什么意思?
如果集合不存在,则MongoDB会在索引部分中创建一个集合 createdCollectionAutomatically 告知操作创建了一个集合。
对于我们的示例,让我们创建一个带索引的集合 −
> db.createCollectionDemo.createIndex({"ClientCountryName":1});
这将产生以下输出 −
{ "createdCollectionAutomatically" : true, "numIndexesBefore" : 1, "numIndexesAfter" : 2, "ok" : 1 }
让我们创建一个带有文档的集合 −
> db.createCollectionDemo.insertOne({"ClientName":"Larry","ClientCountryName":"US"}); { "acknowledged" : true, "insertedId" : ObjectId("5cd2950be3526dbddbbfb612") }
以下是使用`find()`方法显示集合中所有文档的查询 −
> db.createCollectionDemo.find().pretty();
这将产生以下输出 −
{ "_id" : ObjectId("5cd2950be3526dbddbbfb612"), "ClientName" : "Larry", "ClientCountryName" : "US" }
广告