How can I change the storage engine of a MySQL table?
Answers
Answered by
0
Access phpMyAdmin and select your database. Then click the SQL tab, place the following query and click the Go button: ALTER TABLE my_table ENGINE = InnoDB; If the query is executed properly, the database engine of the table will be changed to InnoDB.
akash2542:
hii
Similar questions