A.databaseB.tableC.documentD.index
多项选择题在哪些场景使用MongoDB()
A.大数据B.内容管理系统C.移动端AppsD.数据管理
多项选择题MongoDB 的关闭方式有两种()
A.用kill 命令B.NoC.用MongoDB 自带的关闭方式D.mongo
单项选择题show dbs()
A.显示当前数据库对象或集合B.显示所有数据的列表
单项选择题MongoDB创建集合的方法不包括哪种()
A.db.createCollection("test")B.db.createCollection("test",{capped:true,size:1024,max:10})C.db.test.insert({hello:"world"})D.db.insertCollection("test")
多项选择题MongoDB只删除匹配文档的第一条方法包括哪些()
A.db.test.remove({hello:"world"},1)B.db.test.remove({hello:"world"},true)C.db.test.deleteOne({hello:"world"})D.db.test.delete({hello:"world"})