Last active
February 6, 2024 21:38
-
-
Save unaimillan/b033089430035733b79a56e859bb18a5 to your computer and use it in GitHub Desktop.
IU S24 Databases. Lab3. Tasks
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: IU Databases. Lab 3. Tasks | |
description: Tasks database for the "Databases" course in Innopolis University. | |
Students = { | |
SID:number, Name:string, Surname:string | |
1, Warren, Hayes | |
2, Clement, Valdez | |
3, Albion, Fraley | |
4, Bailey, Ruiz | |
} | |
Courses = { | |
CID:number, CourseName:string, Class:number | |
1, Databases, 2 | |
2, Programming, 1 | |
3, Design, 3 | |
4, Math, 1 | |
} | |
Gradebook = { | |
SID:number, CID:number, Mark:string | |
1, 1, A | |
1, 2, A | |
1, 4, B | |
2, 1, C | |
2, 3, A | |
3, 2, D | |
3, 3, A | |
3, 4, C | |
4, 3, B | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment