Skip to content

Instantly share code, notes, and snippets.

@civera2
Last active April 17, 2020 15:57
Show Gist options
  • Save civera2/fb79485591e887805a240134376ef48f to your computer and use it in GitHub Desktop.
Save civera2/fb79485591e887805a240134376ef48f to your computer and use it in GitHub Desktop.
group:espectaculos
Persona = {DNI, Tel, email
1,'44444', 'p1@gmail.com'
2,'44444', 'p2@gmail.com'
3,'44444', 'p2@gmail.com'
}
Teatro = {Codt, Nom, Direc, Tel, Capac, prov
1, 'Bicentenario','Av España','3333', 1200, 'SJ'
2, 'Sarmiento','Av España','3333', 1200, 'SJ'
3, 'Quintinilla','Av España','3333', 1200, 'MDZ'
4, 'San Luis ','Av España','3333', 200, 'SL'
5, 'La Rioja','Av España','3333', 100, 'LR'
6, 'Colón','Av España','3333', 1200, 'BA'
}
Esp = {Cod,tipo
1,concierto
2, concierto
3, danza}
Tiene = {Codt, Cod
1,1
1,3
1,2
2,3
3,1
4,2
6,1
6,2
5,1
}
Compra = {DNI,Codt,Cod
1,1,1
1,1,3
1,1,2
1,2,3
1,3,1
1,4,2
1,5,1
2,1,1
2,1,2
2,3,1
2,4,2
2,6,2
3,1,1
3,1,2
3,2,3
3,3,1
3,4,2
3,5,1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment