Q. Which variable when set to 1 would enable foreign key checking for InnoDB tables?
β
Correct Answer: (C)
foreign_key_checks
Explanation: This question is about foreign keys in MySQL. Foreign keys are used to ensure data integrity by creating a relationship between two tables. They make sure that the data in one table (the "referencing table") matches the data in another table (the "referenced table").