Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knightsamar/30ed2834ba666ea7d141fb7fb37c1676 to your computer and use it in GitHub Desktop.
Save knightsamar/30ed2834ba666ea7d141fb7fb37c1676 to your computer and use it in GitHub Desktop.
student_course_classlist
group: q_piazza
student = {
sid:number, fname:string, lname:string
1,'ABC','XYZ'
2,'PQR','UVZ'
3,'AAA','BBB'
4,'XXX','YYY'
}
course = {
cid:number,cname:string,enrollment:number
1,'CS340',42
2,'CS464',41
3,'CS340',55
4,'CS290',57
}
classlist = {
sid:number,cid:number,term:string
1,1,'Winter 2017'
2,2,'Spring 2018'
3,4,'Fall 2018'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment