Last active
November 10, 2016 13:30
-
-
Save DinocomM/0ec6e6d29759f18ab58d40c096e5465e to your computer and use it in GitHub Desktop.
DB de prueba para ejercicios Algebra Relacional
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Base de datos para ejercicio sobre Álgebra relacional | |
group: Venta_de_coches | |
MARCA = { | |
cifm:number, nombre:string, ciudad:string | |
0001, Seat , Madrid | |
0002, renault, Barcelona | |
0003, citroen, Valencia | |
0004, Audi, Madrid | |
0005, Opel, Bilbao | |
0006, BMW, Barcelona | |
} | |
CLIENTES = { | |
dni:string, nombre:string, apellido:string, ciudad:string | |
0001, Luis , Garcia, Madrid | |
0002, Antonio, Lopez, Valencia | |
0003, Juan, Martin, Madrid | |
0004, Maria, Garcia, Madrid | |
0005, Javier, Gonzalez, Barcelona | |
0006, Ana, Lopez, Barcelona | |
} | |
VENTAS = { | |
cifc:number, dni:string, codcoche:number, color:string | |
0001, 0001, 0001, blanco | |
0001, 0002, 0005, rojo | |
0002, 0003, 0008, blanco | |
0002, 0001, 0006, rojo | |
0003, 0004, 0011, rojo | |
0004, 0005, 0014, verde | |
} | |
CONCESIONARIOS ={ | |
cifc:number, nombre:string, ciudad:string | |
0001, acar, Madrid | |
0002, bcar, Madrid | |
0003, ccar, Barcelona | |
0004, dcar, Valencia | |
0005, ecar, Bilbao | |
} | |
COCHES = { | |
codcoche:number, nombre:string, modelo:string | |
0001, ibiza, glx | |
0002, ibiza, gti | |
0003, ibiza, gtd | |
0004, toledo, gtd | |
0005, cordoba, gti | |
0006, megane, 1.6 | |
0007, megane, gti | |
0008, laguna, gtd | |
0009, laguna, td | |
0010, zx, 16v | |
0011, zx, td | |
0012, xantia, gtd | |
0013, a4, 1.8 | |
0014, a4, 2.8 | |
0015, astra, caravan | |
0016, astra, gti | |
0017, corsa, 1.4 | |
0018, 300, 316i | |
0019, 500, 525i | |
0020, 700, 750i | |
} | |
MARCO = { | |
cifm:number, codcoche:number | |
0001, 0001 | |
0001, 0002 | |
0001, 0003 | |
0001, 0004 | |
0001, 0005 | |
0002, 0006 | |
0002, 0007 | |
0002, 0008 | |
0002, 0009 | |
0003, 0010 | |
0003, 0011 | |
0003, 0012 | |
0004, 0013 | |
0004, 0014 | |
0005, 0015 | |
0005, 0016 | |
0005, 0017 | |
0006, 0018 | |
0006, 0019 | |
0006, 0020 | |
} | |
DISTRIBUCION = { | |
cifc:number, codcoche:number, cantidad:number | |
0001, 0001, 3 | |
0001, 0005, 7 | |
0001, 0006, 7 | |
0002, 0006, 5 | |
0002, 0008, 10 | |
0002, 0009, 10 | |
0003, 0010, 5 | |
0003, 0011, 3 | |
0003, 0012, 5 | |
0004, 0013, 10 | |
0004, 0014, 5 | |
0005, 0015, 10 | |
0005, 0016, 20 | |
0005, 0017, 8 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Introducir el link "shared" o bien copiar y pegar el código en https://dbis-uibk.github.io/relax/calc.htm para cargar la base de datos y poder trabajar sobre ella.