All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.sql.V006__SALARY_FK.sql Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
use OBJECTOS_SQL;

alter table SALARY drop foreign key SALARY_ibfk_1;
alter table SALARY add constraint SALARY_EMP_NO_FK foreign key (EMP_NO) references EMPLOYEE (EMP_NO) on delete cascade;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy