📅  最后修改于: 2020-11-07 09:00:02             🧑  作者: Mango
MongoDB中的集合包含一组文档,它类似于关系数据库中的表。
您可以使用createCollection()方法创建一个集合。此方法接受一个String值,该值代表要创建的集合的名称以及options(可选)参数。
使用此您可以指定以下内容-
以下是在MongoDB中创建集合的语法。
db.createCollection("CollectionName")
下面的方法创建一个名为ExampleCollection的集合。
> use mydb
switched to db mydb
> db.createCollection("ExampleCollection")
{ "ok" : 1 }
>
同样,以下是使用createCollection()方法的选项创建集合的查询。
>db.createCollection("mycol", { capped : true, autoIndexId : true, size :
6142800, max : 10000 } )
{ "ok" : 1 }
>
以下Python示例连接到MongoDB(mydb)中的数据库,并在其中创建一个集合。
from pymongo import MongoClient
#Creating a pymongo client
client = MongoClient('localhost', 27017)
#Getting the database instance
db = client['mydb']
#Creating a collection
collection = db['example']
print("Collection created........")
Collection created........