跳到主要内容

集合

2023年06月03日
柏拉文
越努力,越幸运

一、认识


二、语法


2.1 增加

db.createCollection(name, options)
  • name: 要创建的集合名称

  • options: 可选参数, 指定有关内存大小及索引的选项

    • capped:

    • autoIndexId:

    • size:

    • max:

2.2 删除

db.collection.drop()

2.3 编辑

2.4 查询