romerlrl

Untitled

Oct 4th, 2020
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. group: ROMER
  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:ROMER
  4. category@en:University of Me
  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, 'curral', 2
  31. }
  32.  
  33. MaqProd =
  34. {
  35. codMaq, codProd, tempo, descProcesso
  36.  
  37. 13, 22, 45, 'assar o bolo'
  38. 12, 23, 3, 'bater o suco'
  39. 14, 23, 2, 'coar o suco'
  40. 11, 22, 10, 'bater o bolo'
  41. 12, 27, 5, 'liquidificar o milho'
  42. 13, 27, 3, 'cozinhar o milho'
  43. 15, 27, 1, 'estourar o milho'
  44. }
  45.  
  46. ComposProd=
  47. {codProdComposto, codProdComponente, quantidade, proc
  48.  
  49. 23, 24, 2, 'suco/fruta'
  50. 21, 25, 7, 'geleia/açucar'
  51. 28, 27, 4, 'pipoca/milho'
  52. 29, 27, 2, 'cural/milho'
  53. }
Add Comment
Please, Sign In to add comment