Is there any equivalence to SQL Server: ALTER TABLE mytable NOCHECK CONTRAINT my_fk_1 in MySQL?
I know I can turn off all constraints in a table using "SET foreign_key_checks = 0;", but I want to disable only one constraint, not all.
I guess there is no way to achieve this in the current version of MysQL, but I wanted to ask to see if someone knows a workaround to this limitation.
TIA.