Create database Escuela
Sergio_TuxsoftExamen24 de Junio de 2017
961 Palabras (4 Páginas)230 Visitas
Create database Escuela
Use Escuela
Create Table Alumno(
Matricula int Primary Key,
Ap_Pat Varchar (50),
Ap_Mat Varchar (50),
Nombre Varchar (50),
Edad Int,
Direccion Varchar (50),
Telefono Varchar (20),
Carrera Varchar (50),
Promedio Int
)
Insert into Alumno Values (1,'Martinez','Hernandez','Karina',19,'Rio Janeiro 402','1000-4423','LSCA', 90)
Insert into Alumno Values (2,'Canela','Godinez','Alma Nelly',22,'Centro 502','1040-4183','IMA', 85)
Insert into Alumno Values (3,'Lucio','Mendoza','Julian',22,'Rio Canoa 410','8043-9453','LSCA', 60)
Insert into Alumno Values (4,'Ortiz','Silva','Amtonia',20,'Rio Janeiro 442','3084-4454','LSCA', 89)
Insert into Alumno Values (5,'Tovar','Gonzalez','Juan Antonio',24,'Rio Gaviota 502','3480-4456','IAS', 75)
Insert into Alumno Values (6,'Mata','Lizarraga','Pedro',24,'Rio Caguas 102','4543-4120','IMA', 80)
Insert into Alumno Values (7,'Alanis','Hurtado','Antonieta',24,'Rio Jin','3040-4724','LSCA', 65)
Insert into Alumno Values (8,'Guzman','Fuente','Ricardo',19,'Rio Manzanillo 742','4403-4223','IMA', 70)
Insert into Alumno Values (9,'Gutierrez','Diaz','Barry',21,'Rio Nilo 634','5804-4523','IAS', 100 )
Insert into Alumno Values (10,'Garcia','Puente','Victor',22,'Rio Negro 482','6809-6423','IAS', 73)
Insert into Alumno Values (11,'Alanis','Garcia','Luis',20,'Mar Rojo 922','6908-8423','LSCA', 89)
Insert into Alumno Values (12,'Osaka','Hernandez','Abigail',19,'Rio Pitufo 402','9607-9423','LSCA', 59)
Insert into Alumno Values (13,'Gomez','CAstillo','Lizeth',19,'Rio Pitufo 489','4504-9523','LSCA', 98)
Insert into Alumno Values (14,'Castillo','Huerta','Diana',19,'Rio Rojo 702','4401-6423','IMA', 99)
Insert into Alumno Values (15,'Diaz','Osaka','Gerardo',19,'Rio Rojo 402','5303-7423','IMA', 84)
Insert into Alumno Values (16,'Guzman','Gonzalez','Iran',19,'Rio Negro 459','6505-8423','IMA', 83)
Insert into Alumno Values (17,'Huerta','Puente','Abraham',19,'Rio Morelos 592','7406-9423','IAS', 80)
Insert into Alumno Values (18,'Cabeza de Vaca','Diaz','Dionicio',19,'Rio Atlas 452','8804-5523','IAS', 94)
Insert into Alumno Values (19,'Puente','Gutierrez','Dante',19,'Rio Rojo 442','1706-3423','LSCA', 92)
Insert into Alumno Values (20,'Martinez','Alba','Carlos',19,'Rio Negro 412','1904-2423','LSCA', 90)
/*Selecciona los que tengan un promedio de 90*/
select * from Alumno
where Promedio = 90
/*Selecciona los que tengan un promedio de 80*/
select * from Alumno
where Promedio = 80
/*Selecciona los que tengan un promedio de 70*/
select * from Alumno
where Promedio = 70
/*Ingrese 7 registros*/
Insert into Alumno Values (21,'flores','espinoza','erika',19,'jardines del campo 123','1904-1023','LSCA', 60)
Insert into Alumno Values (22,'rodriguez','galvan','karla',29,'jardines del tule 321','1904-2021','IAS', 80)
...