在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
创建集合 语法格式 db.createCollection(name, {capped: <Boolean>, autoIndexId: <Boolean>, size: <number>, max <number>}) 参数说明
options参数说明
用法实例 创建固定集合 myCollection,整个集合空间大小 1024000 KB, 文档最大个数为 10000个。 > use test switched to db test > db.createCollection("myCollection", {capped : true, autoIndexId : true, size : 1024000, max : 10000}) { "note" : "the autoIndexId option is deprecated and will be removed in a future release", "ok" : 1 } > show collections myCollection
其实,在 MongoDB 中,你不需要创建集合。当你插入一些文档时,MongoDB 会自动创建集合。 > show collections myCollection > db.myCollection2.insert({"name":"缘来是你", "age":27}) WriteResult({ "nInserted" : 1 }) > show collections myCollection myCollection2 > 删除集合 语法格式 db.collectionName.drop()
返回值 如果成功删除选定集合,则 drop() 方法返回 true,否则返回 false。 实例 > show collections myCollection myCollection2 > db.myCollection2.drop() true > show collections myCollection 总结 以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对极客世界的支持。 |
请发表评论