Advertisement
romerlrl

Untitled

Dec 7th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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. Aluguel =
  7. {aid, cid, adatainicio, adatatermino, apreco
  8.  
  9. 22, 10, 2, 7, 100
  10. 23, 11, 8, 11, 120
  11. 24, 13, 6, 7, 220
  12. 25, 10, 15, 30, 160
  13. }
  14. Aluguel_Carro=
  15. {aid, carid
  16.  
  17. 22, 31
  18. 23, 31
  19. 24, 32
  20. 25, 31
  21. }
  22. Carro=
  23. {carid, carnome, carcategoria, carplaca
  24.  
  25. 31,'Possuído','SUV','KL8'
  26. 32,'Turbinado','Esporte','EF9'
  27. 33,'Kia Besta', 'SUV','CD7'
  28. 34,'Inseto', 'Seda','AB0'
  29. }
  30.  
  31. Cliente =
  32. {cid, cnome, en
  33.  
  34. 10, 'Andre', 'Niteroi'
  35. 11, 'Beltrao', 'Marica'
  36. 12, 'Carol', 'Rio'
  37. 13, 'Diego', 'Ilheus'
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement