Multiple Choice
Which of the following statements about the FOREIGN KEY constraint is incorrect?
A) The constraint exists between two tables,called the parent table and the child table.
B) When the constraint exists,by default a record cannot be deleted from the parent table if matching entries exist in the child table.
C) The constraint can reference any column in another table,even a column that has not been designated as the primary key for the referenced table.
D) When the keywords ON DELETE CASCADE are included in the constraint definition,a corresponding child record will automatically be deleted when the parent record is deleted.
Correct Answer:

Verified
Correct Answer:
Verified
Q113: Constraints are used to ensure the accuracy
Q114: A foreign key constraint can only be
Q115: A(n)<u>FOREIGN KEY</u> constraint can only reference a
Q116: The _ clause of the ALTER TABLE
Q117: A quick way to determine whether a
Q119: The _ view can be used to
Q120: The FOREIGN KEY constraint is usually placed
Q121: A constraint is always enforced at the
Q122: The ALTER TABLE command with the <u>MODIFY
Q123: Which of the following statements about creating