MySQL 8.0 参考手册 / 第 20 章使用 MySQL 作为文档存储 /
19.1 关键概念
本节解释作为使用 MySQL 作为文档存储的一部分引入的概念。
文档是一组键值对,由 JSON 对象表示。通过 JSON MySQL 数据类型,文档在内部使用 MySQL 二进制 JSON 对象表示。字段的值可以包含其他文档、数组和文档列表。
{
"GNP": 4834,
"_id": "00005de917d80000000000000023",
"Code": "BWA",
"Name": "Botswana",
"IndepYear": 1966,
"geography": {
"Region": "Southern Africa",
"Continent": "Africa",
"SurfaceArea": 581730
},
"government": {
"HeadOfState": "Festus G. Mogae",
"GovernmentForm": "Republic"
},
"demographics": {
"Population": 1622000,
"LifeExpectancy": 39.29999923706055
}
}