毎回調べているので自分用メモ
mysql> use information_schema; mysql> select table_name, engine from tables where table_schema = 'foo';
ついでに、engineを変えるalter文
mysql> ALTER TABLE 'bar' ENGINE = InnoDB;
fooはデータベース名
barはテーブル名
毎回調べているので自分用メモ
mysql> use information_schema; mysql> select table_name, engine from tables where table_schema = 'foo';
ついでに、engineを変えるalter文
mysql> ALTER TABLE 'bar' ENGINE = InnoDB;
fooはデータベース名
barはテーブル名