See what storage engine MySQL database uses via terminal
问题 Is there a command in terminal for finding out what storage engine my MySQL database is using? 回答1: This is available in a few places. From the SHOW CREATE TABLE output. mysql> SHOW CREATE TABLE guestbook.Guestbook; +-----------+-------------------------------------------+ | Table | Create Table | +-----------+-------------------------------------------+ | Guestbook | CREATE TABLE `Guestbook` ( `NAME` varchar(128) NOT NULL DEFAULT '', `MESSAGE` text NOT NULL, `TIMESTAMP` varchar(24) DEFAULT