Home » MYSQL » Mysql miscellaneous » Question
  1. Which variable when set to 1 would enable foreign key checking for InnoDB tables?
    1. autocommit
    2. error_count
    3. identity
    4. foreign_key_checks
    5. None of these
Correct Option: D

Setting the variable ‘foreign_key_checks’ to 0 or 1 disables or enables the foreign key checking for InnoDB tables. The default is to perform checking. Disabling key checks can also be helpful.



Your comments will be displayed only after manual approval.