溫馨提示×

mongodb創(chuàng)建集合后怎么輸入數(shù)據(jù)

小億
134
2023-11-22 23:19:28
欄目: 云計算

在MongoDB中,可以使用insertinsertMany命令向集合中插入數(shù)據(jù)。

  1. 使用insert命令插入單個文檔:
db.collection.insert({ field1: value1, field2: value2, ... });
  1. 使用insertMany命令插入多個文檔:
db.collection.insertMany([
  { field1: value1, field2: value2 },
  { field1: value3, field2: value4 },
  ...
]);

請注意,collection是指你要插入數(shù)據(jù)的集合名稱。field1、field2等是文檔中的字段名,value1、value2等是對應(yīng)字段的值。

以下是一個例子:

  1. 創(chuàng)建一個名為users的集合:
db.createCollection("users");
  1. users集合中插入一條數(shù)據(jù):
db.users.insert({ name: "Alice", age: 25 });
  1. users集合中插入多條數(shù)據(jù):
db.users.insertMany([
  { name: "Bob", age: 30 },
  { name: "Charlie", age: 35 }
]);

通過這些命令,你可以向MongoDB集合中輸入數(shù)據(jù)。

0