为了删除数字集合名称,请使用以下语法
db.getCollection("yourNumericCollectionName").drop();首先,创建一个数字集合。以下是查询
> db.createCollection("2536464");
{ "ok" : 1 }现在,在上述集合中插入一些文档。以下是查询
> db.getCollection("2536464").insertOne({"Record":1});
{
"acknowledged" : true,
"insertedId" : ObjectId("5ca254a46304881c5ce84b8e")
}
> db.getCollection("2536464").insertOne({"Record":2});
{
"acknowledged" : true,
"insertedId" : ObjectId("5ca254a76304881c5ce84b8f")
}
> db.getCollection("2536464").insertOne({"Record":3});
{
"acknowledged" : true,
"insertedId" : ObjectId("5ca254a96304881c5ce84b90")
}以下是在find()方法的帮助下显示集合中所有文档的查询
> db.getCollection("2536464").find().pretty();这将产生以下输出
{ "_id" : ObjectId("5ca254a46304881c5ce84b8e"), "Record" : 1 }
{ "_id" : ObjectId("5ca254a76304881c5ce84b8f"), "Record" : 2 }
{ "_id" : ObjectId("5ca254a96304881c5ce84b90"), "Record" : 3 }以下是删除数字集合名称的查询
> db.getCollection("2536464").drop();这将产生以下输出
True
现在,数字集合名称已成功删除。