/ Published in: MySQL

General MySQL engine related commands
Expand |
Embed | Plain Text
SHOW engines; # to get supported engines SHOW table status WHERE name = 'tablename'; # to get the table status ALTER TABLE tablename engine = enginename ; # to set to MyISAM or InnoDB, etc.
You need to login to post a comment.