如何删除名为“group”的 MySQL 集合?
group 是一种 MongoDB 中的方法。不应该将其创建为集合名。即使你创建了它,也可以很容易地使用 getCollection('group').drop() 删除它;)。我们首先创建一个包含文档的集合——
> db.createCollection('group'); { "ok" : 1 } > db.getCollection('group').insertOne({"StudentName":"Chris"}); { "acknowledged" : true, "insertedId" : ObjectId("5cb80fe9623186894665ae3c") } > db.getCollection('group').insertOne({"StudentName":"Robert"}); { "acknowledged" : true, "insertedId" : ObjectId("5cb80fef623186894665ae3d") }
以下查询使用 find() 方法显示集合中的所有文档——
> db.getCollection('group').find().pretty();
这将产生以下输出——
{ "_id" : ObjectId("5cb80fe9623186894665ae3c"), "StudentName" : "Chris" } { "_id" : ObjectId("5cb80fef623186894665ae3d"), "StudentName" : "Robert" }
以下查询删除名为“group”的集合——
> db.getCollection('group').drop();
这将产生以下输出——
True
广告