Answer:
a) ALTER TABLE Movies
Include CONSTRAINT FK_Producer
Outside KEY (producer#C) REFERENCES MovieExec(cert#);
b) Here we will make the segment as NOTNULL.
Modify TABLE Movies
Modify COLUMN producer#C varchar2 NOT NULL;
c) The outside key falling choices figure out what activities the database motor should take on the off chance that you attempt to erase or refresh information in the referenced sections in the parent table.
Modify TABLE Movies
Include CONSTRAINT FK_Producer
Remote KEY (producer#C) REFERENCES MovieExec(cert#)
ON DELETE CASCADE
ON UPDATE CASCADE;
d) ALTER TABLE StarsIn
Include CONSTRAINT FK_mname
Remote KEY (movieTitle) REFERENCES Movies(title);
e) ALTER TABLE StarsIn
Include CONSTRAINT FK_sname
Remote KEY (starname) REFERENCES MovieStar(name)
ON DELETE CASCADE;