-
Which clause in the SQL standard controls how NULL values in a composite foreign key are handled when comparing to a primary key.
-
- ON CASCADE
- ON DELETE
- SET
- MATCH
- None of these
Correct Option: D
The MATCH clause in the SQL standard controls how NULL values in a composite (multiple-column) foreign key are handled when comparing to a primary key. MySQL essentially implements the semantics defined by MATCH SIMPLE.