详解MongoDB中创建集合与删除集合的操作方法
(编辑:jimmy 日期: 2024/11/3 浏览:3 次 )
创建集合:createCollection() 方法
MongoDB db.createCollection(name, options)
语法:
基本的 createCollection() 命令语法如下:
db.createCollection(name, options)
选项"border-bottom-style: solid; border-bottom-color: rgb(214,214,214); padding-bottom: 0px; border-right-style: solid; background-color: rgb(247,247,247); border-top-color: rgb(214,214,214); margin: 8px 0px; padding-left: 0px; width: 560px; padding-right: 0px; border-collapse: collapse; font-family: Helvetica, Arial, sans-serif; border-top-style: solid; color: rgb(0,0,0); border-right-color: rgb(214,214,214); vertical-align: top; border-left-style: solid; border-left-color: rgb(214,214,214); padding-top: 0px">
当插入文档,MongoDB 第一检查大小字段封顶集合,然后它会检查最大的字段中。
例子:
createCollection() 方法不使用选项的基本语法如下:
>use test switched to db test >db.createCollection("mycollection") { "ok" : 1 } >
>show collections mycollection system.indexes
>db.createCollection("mycol", { capped : true, autoIndexID : true, size : 6142800, max : 10000 } ) { "ok" : 1 } >
在MongoDB中,不需要创建集合。当插入一些文件 MongoDB 自动创建的集合。
>db.yiibai.insert({"name" : "yiibai"}) >show collections mycol mycollection system.indexes yiibai >
删除集合:drop() 方法
MongoDB 的
db.collection.drop()
语法:
drop() 命令的基本语法如下
db.COLLECTION_NAME.drop()
首先,检查可用的集合在数据库 mydb
>use mydb switched to db mydb >show collections mycol mycollection system.indexes yiibai >
现在删除集合名称为 mycollection
>db.mycollection.drop() true >
>show collections mycol system.indexes yiibai >
下一篇:MongoDB的分片集群基本配置教程