PyMongo是一个Python发行版,其中包含用于MongoDB的工具。使用以下语法为集合名称使用变量-
var yourVariableName="yourCollectionName"; db[storeCollectionName].yourOperationName;
为了理解上述语法,让我们用文档创建一个集合。使用文档创建集合的查询如下。我们使用变量作为集合名称-
> var storeCollectionName="new_Collection"; > db[storeCollectionName].insertOne({"UserName":"John","UserAge":21}); { "acknowledged" : true, "insertedId" : ObjectId("5c912aea4afe5c1d2279d6a0") } > db[storeCollectionName].insertOne({"UserName":"Carol","UserAge":24}); { "acknowledged" : true, "insertedId" : ObjectId("5c912af54afe5c1d2279d6a1") } > db[storeCollectionName].insertOne({"UserName":"Mike","UserAge":27}); { "acknowledged" : true, "insertedId" : ObjectId("5c912afe4afe5c1d2279d6a2") }
在find()
method的帮助下显示集合中的所有文档。查询如下-
> db[storeCollectionName].find().pretty();
以下是输出-
{ "_id" : ObjectId("5c912aea4afe5c1d2279d6a0"), "UserName" : "John", "UserAge" : 21 } { "_id" : ObjectId("5c912af54afe5c1d2279d6a1"), "UserName" : "Carol", "UserAge" : 24 } { "_id" : ObjectId("5c912afe4afe5c1d2279d6a2"), "UserName" : "Mike", "UserAge" : 27 }