一、创建集合
1、语法
db.createCollection(name,options)
参数说明:
(1)name: 要创建的集合名称。
(2)options: 可选参数,如指定是否创建固定大小的集合。具体内容见参考资料[1]。
2、实例
创建一个名为log的集合:
> use test
switched to db test
> db.createCollection('log')
{ "ok" : 1 }
二、查看集合
1、语法
(1) show collections
(2) show tables
2、实例
> show tables;
log
> show collections
log
>
三、删除集合
1、语法
db.collection.drop()
2、实例
删除名为student的集合:
> show collections
log
student
> db.student.drop()
true
>show collections
log
参考资料
[1] MongoDB官方文档,db.createCollection(): https://docs.mongodb.com/manual/reference/meth

本文介绍了MongoDB中创建、查看和删除集合的操作。包括创建集合的语法和实例,查看集合的命令展示,以及删除集合的方法及示例。参考了MongoDB的官方文档。
117

被折叠的 条评论
为什么被折叠?



