Sử dụng cú pháp sau để tạo JSON phân cấp trong MongoDB -
db.demo716.insertOne( { yourFieldName1, yourFieldName2, . . N, "fieldName": { yourFieldName1, yourFieldName2, . . N, "fieldname": [ { yourFieldName1, yourFieldName2, . . N } ] } } );
Hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -
> db.demo716.insertOne( ... { ... "id": 101, ... "UserEmailId": "[email protected]", ... "UserPassword": "123456", ... "UserInformation": { ... "UserName": "Chris", ... "UserAge": 26, ... "UserCountryName": "US", ... "OtherInformation": ... [ ... { ... "TeacherName":"Robert", ... "SubjectName":"MongoDB", ... "CollegeName":"MIT" ... } ... ] ... } ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5ea9b1ff85324c2c98cc4c2f") }
Hiển thị tất cả các tài liệu từ một bộ sưu tập với sự trợ giúp của phương thức find () -
> db.demo716.find().pretty();
Điều này sẽ tạo ra kết quả sau -
{ "_id" : ObjectId("5ea9b1ff85324c2c98cc4c2f"), "id" : 101, "UserEmailId" : "[email protected]", "UserPassword" : "123456", "UserInformation" : { "UserName" : "Chris", "UserAge" : 26, "UserCountryName" : "US", "OtherInformation" : [ { "TeacherName" : "Robert", "SubjectName" : "MongoDB", "CollegeName" : "MIT" } ] } }