MongoDB是一個(gè)非關(guān)系型數(shù)據(jù)庫,數(shù)據(jù)以文檔的形式存儲(chǔ)。文檔是一個(gè)鍵值對(duì)的集合,類似于JSON對(duì)象。在MongoDB中,可以使用以下方法保存數(shù)據(jù)集:
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, ...});
需要注意的是,保存數(shù)據(jù)集之前需要先創(chuàng)建集合(collection)??梢允褂胏reateCollection()方法創(chuàng)建集合。例如:
db.createCollection("collectionName");
其中,"collectionName"是要?jiǎng)?chuàng)建的集合的名稱。