在MongoDB中,可以使用insert
或insertMany
命令向集合中插入數(shù)據(jù)。
insert
命令插入單個文檔:db.collection.insert({ field1: value1, field2: value2, ... });
insertMany
命令插入多個文檔:db.collection.insertMany([
{ field1: value1, field2: value2 },
{ field1: value3, field2: value4 },
...
]);
請注意,collection
是指你要插入數(shù)據(jù)的集合名稱。field1
、field2
等是文檔中的字段名,value1
、value2
等是對應(yīng)字段的值。
以下是一個例子:
users
的集合:db.createCollection("users");
users
集合中插入一條數(shù)據(jù):db.users.insert({ name: "Alice", age: 25 });
users
集合中插入多條數(shù)據(jù):db.users.insertMany([
{ name: "Bob", age: 30 },
{ name: "Charlie", age: 35 }
]);
通過這些命令,你可以向MongoDB集合中輸入數(shù)據(jù)。