Last active
March 6, 2022 00:20
-
-
Save ypacheco/dffcb12fb342ddf8d29050371a29703e to your computer and use it in GitHub Desktop.
db_slides
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group: WPO3slides | |
Employee = { | |
employeeNr, firstName, lastName, empType | |
1, 'Maxim','Van de Wynckel', 'BAAP' | |
2, 'Yunior', 'Pacheco Correa','BAAP' | |
3, 'Beat', 'Signer','ZAP' | |
4, 'Bas', 'Ketsman','ZAP' | |
} | |
Students = { | |
studentNr, firstName, lastName | |
1, 'Maxim','Van de Wynckel' | |
2, 'Yunior', 'Pacheco Correa' | |
3, 'John', 'Doe' | |
4, 'Jane', 'Doe' | |
} | |
Courses = { | |
courseName, credits | |
'Databases',6 | |
'Web Technologies', 6 | |
'Next Generation User Interfaces', 6 | |
'Advanced Topics in Big Data', 3 | |
'Master Thesis', 18 | |
} | |
CourseEnrollment = { | |
studentNr, courseName | |
3, 'Databases' | |
3, 'Web Technologies' | |
3,'Advanced Topics in Big Data' | |
4,'Databases' | |
4, 'Master Thesis' | |
} | |
CourseAssistants = { | |
employeeNr, courseName | |
1, 'Databases' | |
1, 'Web Technologies' | |
1,'Advanced Topics in Big Data' | |
2,'Databases' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment