使用 MongoDB Shell
删除单个文档:
use mydatabase # 切换到数据库
db.mycollection.deleteOne({ name: "John Doe" })
在这个例子中,mydatabase 是数据库的名称,mycollection 是集合的名称。这个命令会删除名字为 "John Doe" 的第一个文档。
删除多个文档:
use mydatabase # 切换到数据库
db.mycollection.deleteMany({ age: { $lt: 30 } })
这个命令会删除年龄小于 30 岁的所有文档。
使用编程语言驱动程序
使用 Node.js(使用官方驱动):
const MongoClient = require('mongodb').MongoClient;
// 连接到 MongoDB 服务器
const url = 'mongodb://localhost:27017';
const dbName = 'mydatabase';
MongoClient.connect(url, { useNewUrlParser: true, useUnifiedTopology: true }, (err, client) => {
if (err) throw err;
console.log('Connected to MongoDB server');
const db = client.db(dbName);
// 删除单个文档
db.collection("mycollection").deleteOne({ name: "John Doe" });
// 删除多个文档
db.collection("mycollection").deleteMany({ age: { $lt: 30 } });
// 关闭连接
client.close();
});
在这个例子中,连接到 MongoDB 服务器后,选择数据库(mydatabase),然后使用 deleteOne 和 deleteMany 方法删除文档。
请注意,删除文档是一个慎重的操作,确保在删除文档时使用正确的查询条件以及在生产环境中进行必要的备份。
转载请注明出处:http://www.pingtaimeng.com/article/detail/14222/MongoDB