My database currently uses the InnoDB engine. Now I want to add a full-text search function, so I want to convert my tables to MyISAM. But this violates all foreign keys. How can I safely change my table engines to MyISAM?
How can I use SELECT ... JOIN after I change my tables to the MyISAM engine?
ALTER TABLE jobs ENGINE = MyISAM; Cannot delete or update a parent row: a foreign key constraint fails
source share