adspace
Answer Posted / Arti Kumari
To change the database engine for an existing table, you can use the ALTER TABLE statement: ALTER TABLE table_name ENGINE = new_engine_name. For example, if you want to switch from InnoDB to MyISAM, the command would be: ALTER TABLE table_name ENGINE = MyISAM.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers