Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


22.3.3.2 使用集合

为了在模式中工作于集合,使用全局对象db来访问当前模式。在这个例子中,我们正在使用之前导入的world_x模式,以及countryinfo集合。因此,你发出的操作的格式是db.collection_名.operation,其中collection_名是操作执行的集合的名称。在以下示例中,操作将对countryinfo集合执行。

使用add()方法将一个文档或多个文档插入现有集合。将以下文档插入到countryinfo集合中。由于这是多行内容,请按两次Enter来插入文档。

mysql-js> db.countryinfo.add(
 {
    GNP: .6,
    IndepYear: 1967,
    Name: "Sealand",
    Code: "SEA",
    demographics: {
        LifeExpectancy: 79,
        Population: 27
    },
    geography: {
        Continent: "Europe",
        Region: "British Islands",
        SurfaceArea: 193
    },
    government: {
        GovernmentForm: "Monarchy",
        HeadOfState: "Michael Bates"
    }
  }
)

方法返回操作的状态。你可以通过搜索文档来验证操作。例如:

mysql-js> db.countryinfo.find("Name = 'Sealand'")
{
    "GNP": 0.6,
    "_id": "00005e2ff4af00000000000000f4",
    "Name": "Sealand",
    "Code:": "SEA",
    "IndepYear": 1967,
    "geography": {
        "Region": "British Islands",
        "Continent": "Europe",
        "SurfaceArea": 193
    },
    "government": {
        "HeadOfState": "Michael Bates",
        "GovernmentForm": "Monarchy"
    },
    "demographics": {
        "Population": 27,
        "LifeExpectancy": 79
    }
}

注意,除了在文档添加时指定的字段之外,还有一个额外的字段,即 _id。每个文档都需要一个唯一标识符字段叫做 _id_id 字段的值必须在同一集合中的所有文档中是唯一的。文档 ID 由服务器生成,不由客户端生成,因此 MySQL Shell 不会自动设置一个 _id 值。如果文档不包含 _id 字段,MySQL 会为其设置一个 _id 值。有关更多信息,请参阅理解文档 ID