在MongoDB中,可以使用deleteMany()
方法來清空整張表的數據。
以下是一個示例代碼,展示了如何使用deleteMany()
方法清空整張表的數據:
// 連接到MongoDB數據庫
const MongoClient = require('mongodb').MongoClient;
const url = 'mongodb://localhost:27017';
const dbName = 'yourDatabaseName';
MongoClient.connect(url, function(err, client) {
if (err) throw err;
const db = client.db(dbName);
const collection = db.collection('yourCollectionName');
// 刪除整張表的數據
collection.deleteMany({}, function(err, result) {
if (err) throw err;
console.log('整張表的數據已清空');
client.close();
});
});
注意,上述代碼中的yourDatabaseName
和yourCollectionName
需要替換為實際的數據庫和集合名稱。