romerlrl

Untitled

Oct 3rd, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 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. Maq =
  7. {codMaq, nomeMaq
  8.  
  9. 11, 'batedeira'
  10. 12, 'liquidificador'
  11. 13, 'forno'
  12. 14, 'peneira'
  13. 15, 'microondas'
  14. 16, 'congelador'
  15. 17, ''
  16. 18, ''
  17. }
  18.  
  19. Produto =
  20. {codProd, descrProd, pesoProd
  21.  
  22. 21, 'geleia', 1
  23. 22, 'bolo', 3
  24. 23, 'suco', 2
  25. 24, 'fruta', 2
  26. 25, 'acucar', 5
  27. 26, 'linhaca', 1
  28. 27, 'milho', 10
  29. 28, 'pipoca', 3
  30. 29, 'cural', 2
  31. }
  32.  
  33. MaqProd=
  34. {
  35. codMaq, codProd, tempo
  36.  
  37. 13, 22, 45
  38. 12, 23, 3
  39. 14, 23, 2
  40. 11, 22, 10
  41. 12, 27, 5
  42. 15, 27, 3
  43. 14, 27, 1
  44. }
  45.  
  46. ComposProd=
  47. {codProdComposto, codProdComponente, quantidade
  48.  
  49. 23, 24, 2
  50. 21, 25, 7
  51. 28, 27, 4
  52. 29, 27, 2
  53. 22, 23, 4
  54. 22, 26, 7
  55. }
Add Comment
Please, Sign In to add comment