Advertisement
romerlrl

Untitled

Nov 19th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. group: UIBK - R, S, T
  2. description: Tables from and for the lecture [Databases: Foundations, Data Models and System Concepts - University of Innsbruck](http://dbis-informatik.uibk.ac.at/249-0-VO-Datenbanksysteme.html) chapter 3
  3. category@de:Universität Innsbruck
  4. category@en:University of Innsbruck
  5.  
  6. PROF = {
  7. MAT, NOME
  8.  
  9. 1, "Andre"
  10. 2, "Bruno"
  11. 3, "Carla"
  12. 4, "Dean"
  13. }
  14. DISC = {
  15. COD, NOME
  16.  
  17. 10, 'Banco de Dados'
  18. 11, 'Estrutura de Dados'
  19. 12, 'Sistemas Operacionais'
  20. }
  21.  
  22. PODE = {
  23. MAT, COD
  24. 1, 11
  25. 2, 11
  26. 2, 10
  27. 3, 11
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement