Tienda de Ropa

Descargar como pdf o txt
Descargar como pdf o txt
Está en la página 1de 11

SANCHEZ SEGURA LITZY DANIELA 24LF131

La tienda que ocupe para elaborar la actividad fue una de ropa

En este espacio se muestran las sentencias que ocupe para crear cada una de las tablas.
SANCHEZ SEGURA LITZY DANIELA 24LF131

En la siguiente imagen se muestra como utilice la sentencia “Insert into” para ir llenando las tablas.
SANCHEZ SEGURA LITZY DANIELA 24LF131
SANCHEZ SEGURA LITZY DANIELA 24LF131
SANCHEZ SEGURA LITZY DANIELA 24LF131

En esta imagen se muestran las tablas


ya creadas

Consulta 1

Aquí se muestran los 10 productos

Consulta2
SANCHEZ SEGURA LITZY DANIELA 24LF131

Aquí se muestran 5
proveedores

Consulta 3

Aquí se muestran las tres


tiendas

Consulta5
SANCHEZ SEGURA LITZY DANIELA 24LF131

Aquí se muestran los 10 clientes

Consulta 5
SANCHEZ SEGURA LITZY DANIELA 24LF131

Aquí se muestran las 5 modificaciones a la tabla de productos


SANCHEZ SEGURA LITZY DANIELA 24LF131

use tienda_de_ropa; (

create table Producto Nombre char(20) primary key,

( Telefono int

producto char(20) primary key, );

precio_prenda int,

cantidad int Insert into Producto (producto,precio_prenda, cantidad) values

); ("BLUSA_BLANCA", 100, 25),

create table Proveedor ("SHORT_FLORES", 250, 25),

( ("FALDA_MEZCLILLA", 300, 30),

Nombre char(20) primary key, ("PANS_DEPORTIVO", 500, 25),

Telefono int, ("ABRIGO_NEGRO", 750, 30),

Numero_pedido int ("VESTIDO_CORTO", 500, 509),

); ("GABARDINA", 900, 30),

create table Tiendas ("PLAYERA_BLANCA", 90, 50),

( ("CAMISA_CUADROS", 150, 40),

Nombre_empresa char(20) primary key, ("BUFANDA", 50, 100);

Telefono int,

Ubicacion int Insert into Proveedor (Nombre, Telefono, Numero_pedido) values

); ("Palacio_de_hierro", 554512, 122),

Create table Clientes ("Bershka", 556465, 133),


SANCHEZ SEGURA LITZY DANIELA 24LF131

("Garcias", 406529, 144),

("Cuidado_con_el_perro", 558421, 155), create view Consulta1 as select Producto, cantidad from producto;

("Valenciaga", 897562, 166); select * from Consulta1;

insert into Tiendas (Nombre_empresa, Telefono, Ubicacion) values create view Consulta2 as select Nombre, Telefono from Clientes;

("TiendasWaldos", 550128, 524), select * from Consulta2;

("Sanstor", 646520, 222),

("Garcia", 204545, 250); update Producto set Producto ="FALDA_MEZCLILLA" where


Producto ="BATA_DORMIR";

update Producto set Producto ="PANS_DEPORTIVO" where


insert into Clientes (Nombre, Telefono) values
Producto ="PANTALONRECTO";
("Enrique_H", 556452),
update Producto set Producto ="VESTIDO_CORTO" where
("Carlos_Mancera", 556465), Producto ="FALDA_TERCIOPELO";

("Olivia_M", 465792), update Producto set Producto ="GABARDINA" where Producto


="CALCETA";
("Cintia_B", 846519),
update Producto set Producto ="CAMISA_CUADROS" where
("Mancera_s", 875412), Producto ="CHAMARRA_PIEL";
("Angel_s", 561247),

("Ruperto", 785962), create view Consulta3 as select Nombre from Proveedor;


("Edith_l", 559123), select * from Consulta3;
("Cristian_m", 596482),

("Daniela_S", 456262);
SANCHEZ SEGURA LITZY DANIELA 24LF131

create view Consulta5 as select Nombre_empresa from Tiendas;

select * from Consulta5;

create view Consulta6 as select Nombre from clientes;

select *from Consulta6;

También podría gustarte