Está en la página 1de 2

it has to do with technology, I like the programming

subject, my expectation for now is to finish the


technology and develop the practices successfully,
learn a lot and be an excellent programmer,
software developer. , contributing my grain of sand
to the world of(EstDocumento, EstNombre, EstApellido, EstEdad) VALUES
(Documento, Nombre, Apellido, Edad); End // CALL nuevoestudiante
('14212210','Adonay','Romero', '40'); ESTUDIANTEXCURSO Delimiter // CREATE
PROCEDURE nuevoestudiantexcurso ( IN Fechainicio date, IN Curso int(11), IN Documento
varchar(11) ) BEGIN INSERT INTO estudiantexcurso (EstFechainicio, EstCurso, EstDocumento)
VALUES (Fechainicio, Curso, Documento); End // CALL nuevoestudiantexcurso ('2012-01-
01','146544','14212210');

Utilizando instrucciones SQL, realice las siguientes actividades:

1.      Cree una base de datos llamada laboratorioSQL:

Create database LaboratorioSQL;


2. Ubicado en la base de datos que acabó de crear, construya las siguientes tablas con los
respectivos campos y tipos de datos.

Create Table profesor (

docprof varchar (11) not null,

nomprof varchar (30) not null,

apeprof varchar (30) not null,

cateprof int not null,

salprof int not null,

También podría gustarte