use Eduvos;
db.createCollection("Students");
db.createCollection("Modules");
db.Students.insertMany([
{
studentID: "eduv12345",
firstName: "John",
lastName: "Smith"
},
{
studentID: "eduv89456",
firstName: "Eve",
lastName: "Reynolds"
},
{
studentID: "eduv56789",
firstName: "Joe",
lastName: "Soap"
}
]);
db.Students.find().pretty();
db.Modules.insertMany([
{
moduleCode: "ITDSA2",
courseName: "Database Systems",
credits: 150,
studentID: "eduv12345"
},
{
moduleCode: "ITDSA2",
courseName: "Database Systems",
credits: 150,
studentID: "eduv89456"
},
{
moduleCode: "ITDSA2",
courseName: "Database Systems",
credits: 150,
studentID: "eduv56789"
}
]);
db.Modules.find().pretty();
To embed this project on your website, copy the following code and paste it into your website's HTML: