Skip to content

Instantly share code, notes, and snippets.

@urielhdz
Last active February 27, 2025 02:06
Show Gist options
  • Save urielhdz/2cb313bdd87fcb0a49ff6eceaafe961b to your computer and use it in GitHub Desktop.
Save urielhdz/2cb313bdd87fcb0a49ff6eceaafe961b to your computer and use it in GitHub Desktop.
group: learning_platform
description[[ The data for this dataset was generated using <http://www.generatedata.com/>
* The relation _Usuario_ contains basic information about users of the learning platform.
* The relation _Curso_ contains details about courses available in the system.
* The relation _Progreso_Curso_ tracks the progress of users in different courses.
]]
Usuario = {
uID nombre rol edad
1 Alice estudiante 22
2 Bob estudiante 30
3 Charlie dev 27
4 Diana estudiante 35
5 Edward dev 40
}
Curso = {
cID titulo duracion:number
1 'Introduccion a SQL' 1500
2 'Fundamentos de Python' 1800
3 'Arquitectura de Software' 2400
4 'Machine Learning Basico' 2000
5 'Desarrollo Web con Django' 2200
}
Progreso_Curso = {
pcID uID cID progreso:number
1 1 1 80
2 1 3 50
3 2 2 95
4 3 1 40
5 3 4 100
6 4 5 30
7 5 3 75
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment