MongoDB是一個非關系型數據庫,數據以文檔的形式存儲。文檔是一個鍵值對的集合,類似于JSON對象。在MongoDB中,可以使用以下方法保存數據集:
db.collection.insertOne({key1: value1, key2: value2, ...});
db.collection.insertMany([{key1: value1, key2: value2, ...}, {key1: value1, key2: value2, ...}]);
db.collection.save({key1: value1, key2: value2, ...});
db.collection.update({key: value}, {$set: {newKey: newValue}});
db.collection.replaceOne({key: value}, {newKey1: newValue1, newKey2: newValue2, ...});
需要注意的是,保存數據集之前需要先創建集合(collection)。可以使用createCollection()方法創建集合。例如:
db.createCollection("collectionName");
其中,"collectionName"是要創建的集合的名稱。