USE `xxdb`;

SELECT CONCAT( 'ALTER TABLE ' ,TABLE_NAME ,' ENGINE=MyISAM; ') as `sql-commands-for-convert-engine`
    FROM information_schema.TABLES AS t
    WHERE TABLE_SCHEMA = 'xijishopdb' AND TABLE_TYPE = 'BASE TABLE';

show table status from xxdb

 

相关文章:

  • 2021-09-24
  • 2021-09-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-14
  • 2021-07-23
猜你喜欢
  • 2022-12-23
  • 2021-11-24
  • 2021-08-03
  • 2022-01-09
  • 2019-02-25
  • 2021-10-26
相关资源
相似解决方案