Properties

Name: CC1151778995891 
Table schema: USER 
Table: USER.EMP_RESUME 
Definer: USER 
Reference key: CC1151778928062 
Reference schema: USER 
Reference table: EMPLOYEE 
Delete rule: RESTRICT 
Update rule: RESTRICT 
Create time: 01.07.2006 
Foreign key colnames: EMPNO 
Primary key colnames: EMPNO 

SQL

ALTER TABLE "USER    "."EMP_RESUME"
    ADD CONSTRAINT "CC1151778995891" FOREIGN KEY
        ("EMPNO")
    REFERENCES "USER    "."EMPLOYEE"
        ("EMPNO")
    ON DELETE RESTRICT
    ON UPDATE RESTRICT
    ENFORCED
    ENABLE QUERY OPTIMIZATION;

See Also

List of foreign keys