How can I determine type of mysql database : whether it is InnoDB or MyISAM?

前端 未结 6 503
不知归路
不知归路 2021-01-31 17:08
  • How can I determine type of mysql database : whether it is InnoDB or MyISAM ?
  • How can I convert MyISAM to InnoDB or vice-versa ?
6条回答
  •  北海茫月
    2021-01-31 17:43

    Here is a query that lists all tables in all databases and their storage engines:

    SELECT table_name, table_schema, engine
    FROM information_schema.tables;
    

    (From https://serverfault.com/a/244792/406647)

提交回复
热议问题