Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Given the tables have been created without foreign keys added, which of the following ALTER TABLE statements would create a foreign key on the coordinator
Given the tables have been created without foreign keys added, which of the following ALTER TABLE statements would create a foreign key on the coordinatorid in the email table to reference the coordinatorid in the coordinator table?
ALTER TABLE coordinator
ADD CONSTRAINT fkemail
FOREIGN KEY coordinatorid
REFERENCES email coordinatorid;
ALTER TABLE email
ADD CONSTRAINT fkemail
FOREIGN KEY coordinatorid
REFERENCES coordinator coordinatorid;
ALTER TABLE email
ADD CONSTRAINT fkemail
FOREIGN KEY coordinator coordinatorid
REFERENCES coordinatorid;
ALTER TABLE email
ADD CONSTRAINT
FOREIGN KEY coordinatorid
REFERENCES coordinator coordinatorid;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started