Está en la página 1de 1

De Diego Sánchez para todos: 08:48 PM

create table if not exists `Empresa_Software`.`Capacitaciones`(


`Codigo_Capacitacion` int not null auto_increment,
`Codigo_Profesion`int null,
`Codigo_Proyecto`int null,
primary key (`Codigo_Capacitacion`),
constraint `Codigo_Capacitacion`
foreign key (`Codigo_Profesion`)
references `Empresa_Software`. `Profesiones` (`Codigo_Profesion`)
on delete no action
on update no action)
engine = InnoDB;

También podría gustarte