創建集合
createCollection() 方法
在 MongoDB 中,創建集合采用 db.createCollection(name, options) 方法。
語法格式
createCollection() 方法的基本格式如下:
db.createCollection(name, options)
在該命令中,name 是所要創建的集合名稱。options 是一個用來指定集合配置的文檔。
| 參數 | 類型 | 描述 |
|---|---|---|
| name | 字符串 | 所要創建的集合名稱 |
| options | 文檔 | 可選。指定有關內存大小及索引的選項 |
參數 options 是可選的,所以你必須指定的只有集合名稱。下表列出了所有可用選項:
| 字段 | 類型 | 描述 |
|---|---|---|
| capped | 布爾 | (可選)如果為 true,則創建固定集合。固定集合是指有着固定大小的集合,當達到最大值時,它會自動覆蓋最早的文檔。 當該值為 true 時,必須指定 size 參數。 |
| autoIndexID | 布爾 | (可選)如為 true,自動在 _id 字段創建索引。默認為 false。 |
| size | 數值 | (可選)為固定集合指定一個最大值(以字節計)。 如果 capped 為 true,也需要指定該字段。 |
| max | 數值 | (可選)指定固定集合中包含文檔的最大數量。 |
在插入文檔時,MongoDB 首先檢查固定集合的 size 字段,然后檢查 max 字段。
范例
不帶參數的 createCollection() 方法的基本格式為:
>use test
switched to db test
>db.createCollection("mycollection")
{ "ok" : 1 }
>
可以使用 show collections 來查看創建了的集合。
>show collections
mycollection
system.indexes
下面是帶有幾個關鍵參數的 createCollection() 的用法:
>db.createCollection("mycol", { capped : true, autoIndexID : true, size : 6142800, max : 10000 } )
{ "ok" : 1 }
>
在 MongoDB 中,你不需要創建集合。當你插入一些文檔時,MongoDB 會自動創建集合。
>db.tutorialspoint.insert({"name" : "tutorialspoint"})
>show collections
mycol
mycollection
system.indexes
tutorialspoint
>
刪除集合
drop() 方法
MongoDB 利用 db.collection.drop() 來刪除數據庫中的集合。
語法格式
drop() 命令的基本格式如下:
db.COLLECTION_NAME.drop()
范例
首先檢查在數據庫 mydb 中已有集合:
>use mydb
switched to db mydb
>show collections
mycol
mycollection
system.indexes
tutorialspoint
>
接着刪除集合 mycollection。
>db.mycollection.drop()
true
>
再次檢查數據庫中的現有集合:
>show collections
mycol
system.indexes
tutorialspoint
>
如果成功刪除選定集合,則 drop() 方法返回 true,否則返回 false。
