为何无法更改引擎?

参见这里:

https://www.jb51.net/article/...

我更改引擎

mysql> alter table num  type = MyISAM;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'type = MyISAM' at line 1
mysql> alter table num  type = Myisam;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'type = Myisam' at line 1

这个表里面已经有数据了,不能这样修改吗?

阅读 1.8k
1 个回答

ALTER TABLE num ENGINE=MYISAM

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题