Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

db.

createCollection("Teachers");
db.createCollection("Subjects");
db.createCollection("Assign");

db.Teachers.insertMany([
{
TID:1,
Name:"KAAA",
Department:"CS"
},
{
TID:2,
Name:"STE",
Department:"HUMLET"
},
{
TID:3,
Name:"TA",
Department:"ACC"
}
]);

db.Subjects.insertMany([
{
SubjId: 1,
SubjCode: "CS1234",
SubjDesc: "TURNING ON PC",
SubjUnits: 3,
SubjSchedule: "MW07:40-09:10"
},
{
SubjId: 2,
SubjCode: "IT4567",
SubjDesc: "POWERPOINT TUTORIAL",
SubjUnits: 3,
SubjSchedule: "MW09:20-10:50"
},
{
SubjId: 3,
SubjCode: "IS1357",
SubjDesc: "DATE A DATABASE",
SubjUnits: 3,
SubjSchedule: "TT07:40-09:10"
}
]);

You might also like