Question: What happens once the following command is executed? ALTER TABLE ORDERS ADD FOREIGN KEY ( CLIENT _ ID ) REFERENCES CLIENT ( CLIENT _ ID

What happens once the following command is executed?
ALTER TABLE ORDERS
ADD FOREIGN KEY (CLIENT_ID) REFERENCES CLIENT (CLIENT_ID);
The DBMS will reject updates to the ORDERS table with CLIENT_ID values missing from the CLIENT table.
The DBMS will reject the insertion of rows that have different primary keys but are otherwise identical into the ORDERS table.
The DBMS will reject updates to the CLIENT table with CLIENT_ID values missing from the ORDERS table.
The DBMS will ensure that only legal values are entered into the CLIENT_ID column in the ORDERS table.
 What happens once the following command is executed? ALTER TABLE ORDERS

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!