MySQL数据库使用事务,相关数据表必须为InnoDB引擎

查看数据表状态:

SHOW TABLE STATUS FROM wawa WHERE NAME='ww_invite_code_temp';

wawa为数据库名,ww_invite_code_temp为数据表名。

修改数据表类型为InnoDB

alter table ww_invite_code_temp engine = innodb;

通过SQLyog查看数据表类型:

MySQL数据库修改数据表类型(引擎)的方法

相关文章:

  • 2022-12-23
  • 2021-08-01
  • 2021-12-01
  • 2021-09-01
  • 2022-01-27
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-14
  • 2021-11-03
  • 2021-11-23
  • 2022-01-30
  • 2022-12-23
相关资源
相似解决方案