CFOREIGN KEY (column_name) TO parent_table(parent_column)
DFOREIGN KEY column_name TO parent_table(parent_column)"
Step-by-Step Solution
Solution:
Step 1: Recall correct foreign key syntax
The correct syntax uses parentheses around the column name and the keyword REFERENCES.
Step 2: Compare options
Only FOREIGN KEY (column_name) REFERENCES parent_table(parent_column) uses parentheses and REFERENCES correctly; others miss parentheses or use TO instead of REFERENCES.
Final Answer:
FOREIGN KEY (column_name) REFERENCES parent_table(parent_column) -> Option A